diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs index fb8d0daf76f6..9dcca3018d56 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ResourceGroupOperationsTests.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Collections.Generic; using System.Threading.Tasks; using Azure.Core.TestFramework; @@ -76,6 +77,8 @@ public async Task Update() Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); Assert.AreEqual(rg1.Data.Tags, rg2.Data.Tags); + + Assert.ThrowsAsync(async () => _ = await rg1.UpdateAsync(null)); } [TestCase] @@ -87,6 +90,12 @@ public async Task StartExportTemplate() parameters.Resources.Add("*"); var expOp = await rg.StartExportTemplateAsync(parameters); await expOp.WaitForCompletionAsync(); + + Assert.ThrowsAsync(async () => + { + var expOp = await rg.StartExportTemplateAsync(null); + _ = await expOp.WaitForCompletionAsync(); + }); } [TestCase] @@ -104,6 +113,9 @@ public async Task AddTag() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => _ = await rg1.AddTagAsync(null, "value")); + Assert.ThrowsAsync(async () => _ = await rg1.AddTagAsync(" ", "value")); } [TestCase] @@ -123,6 +135,17 @@ public async Task StartAddTag() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => + { + var addTagOp = await rg1.StartAddTagAsync(null, "value"); + _ = await addTagOp.WaitForCompletionAsync(); + }); + Assert.ThrowsAsync(async () => + { + var addTagOp = await rg1.StartAddTagAsync(" ", "value"); + _ = await addTagOp.WaitForCompletionAsync(); + }); } [TestCase] @@ -143,6 +166,8 @@ public async Task SetTags() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => _ = await rg1.SetTagsAsync(null)); } [TestCase] @@ -165,6 +190,12 @@ public async Task StartSetTags() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => + { + var setTagOp = await rg1.StartSetTagsAsync(null); + _ = await setTagOp.WaitForCompletionAsync(); + }); } [TestCase] @@ -190,6 +221,9 @@ public async Task RemoveTag() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => _ = await rg1.RemoveTagAsync(null)); + Assert.ThrowsAsync(async () => _ = await rg1.RemoveTagAsync(" ")); } [TestCase] @@ -218,6 +252,17 @@ public async Task StartRemoveTag() Assert.AreEqual(rg1.Data.Properties.ProvisioningState, rg2.Data.Properties.ProvisioningState); Assert.AreEqual(rg1.Data.Location, rg2.Data.Location); Assert.AreEqual(rg1.Data.ManagedBy, rg2.Data.ManagedBy); + + Assert.ThrowsAsync(async () => + { + var removeTagOp = await rg1.StartRemoveTagAsync(null); + _ = await removeTagOp.WaitForCompletionAsync(); + }); + Assert.ThrowsAsync(async () => + { + var removeTagOp = await rg1.StartRemoveTagAsync(" "); + _ = await removeTagOp.WaitForCompletionAsync(); + }); } [TestCase] @@ -257,6 +302,8 @@ public async Task MoveResources() countRg2 = await GetResourceCountAsync(genericResources, rg2); Assert.AreEqual(0, countRg1); Assert.AreEqual(1, countRg2); + + Assert.ThrowsAsync(async () => _ = await rg1.MoveResourcesAsync(null)); } [TestCase] @@ -286,6 +333,12 @@ public async Task StartMoveResources() countRg2 = await GetResourceCountAsync(genericResources, rg2); Assert.AreEqual(0, countRg1); Assert.AreEqual(1, countRg2); + + Assert.ThrowsAsync(async () => + { + var moveOp = await rg1.StartMoveResourcesAsync(null); + _ = await moveOp.WaitForCompletionResponseAsync(); + }); } [TestCase] @@ -302,6 +355,8 @@ public async Task ValidateMoveResources() Response response = await rg1.ValidateMoveResourcesAsync(moveInfo); Assert.AreEqual(204, response.Status); + + Assert.ThrowsAsync(async () => _ = await rg1.ValidateMoveResourcesAsync(null)); } [TestCase] @@ -322,6 +377,12 @@ public async Task StartValidateMoveResources() Response response = await validateOp.WaitForCompletionResponseAsync(); Assert.AreEqual(204, response.Status); + + Assert.ThrowsAsync(async () => + { + var moveOp = await rg1.StartValidateMoveResourcesAsync(null); + _ = await moveOp.WaitForCompletionResponseAsync(); + }); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json index 1bdcee92a156..a45ba67f4743 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a5e542919dab42fffda5350028d688c", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:22 GMT", + "Date": "Wed, 16 Jun 2021 00:00:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "919d1dda-c745-428c-b3a5-007857beeb9d", + "x-ms-correlation-request-id": "71c53094-9126-49e4-b863-5c15e7edf884", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "919d1dda-c745-428c-b3a5-007857beeb9d", - "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:919d1dda-c745-428c-b3a5-007857beeb9d" + "x-ms-request-id": "71c53094-9126-49e4-b863-5c15e7edf884", + "x-ms-routing-request-id": "WESTUS2:20210616T000028Z:71c53094-9126-49e4-b863-5c15e7edf884" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c20fd30a3031a24ca361ed3ab78f60a8-09ed7b73e36faa4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e371a9a62365be47873fc7d4a265005d-33bbd9ef5753534f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1da8b7561b8028cbcb34792a863a65c", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:23 GMT", + "Date": "Wed, 16 Jun 2021 00:00:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34edc19e-677f-40dd-af12-5725a9581f8e", + "x-ms-correlation-request-id": "853451b7-4837-4cfc-a7ab-d7b49bbe70ba", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "34edc19e-677f-40dd-af12-5725a9581f8e", - "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:34edc19e-677f-40dd-af12-5725a9581f8e" + "x-ms-request-id": "853451b7-4837-4cfc-a7ab-d7b49bbe70ba", + "x-ms-routing-request-id": "WESTUS2:20210616T000029Z:853451b7-4837-4cfc-a7ab-d7b49bbe70ba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", @@ -92,8 +96,7 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-ea319da1a2fa8140a56320e3699c97b5-38641671cb85a74f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b88bc6574e449dc41491ab9b82fcef2d", "x-ms-return-client-request-id": "true" }, @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:23 GMT", + "Date": "Wed, 16 Jun 2021 00:00:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b015f7f5-5a21-4fa7-a21f-90a733878e50", + "x-ms-correlation-request-id": "cb4804ee-aa30-4369-be6c-e173316532d1", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b015f7f5-5a21-4fa7-a21f-90a733878e50", - "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:b015f7f5-5a21-4fa7-a21f-90a733878e50" + "x-ms-request-id": "cb4804ee-aa30-4369-be6c-e173316532d1", + "x-ms-routing-request-id": "WESTUS2:20210616T000030Z:cb4804ee-aa30-4369-be6c-e173316532d1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg843", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json index 42d688f82729..9951747e0146 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/AddTag()Async.json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df4905ee034c09350d8fd369b2eaa5f0", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:22 GMT", + "Date": "Wed, 16 Jun 2021 00:00:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb242e45-005a-4e21-a36f-f2d706ec9b3a", + "x-ms-correlation-request-id": "3feadf7d-ea19-40d7-b564-48bb2020c087", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "fb242e45-005a-4e21-a36f-f2d706ec9b3a", - "x-ms-routing-request-id": "WESTUS2:20210519T185123Z:fb242e45-005a-4e21-a36f-f2d706ec9b3a" + "x-ms-request-id": "3feadf7d-ea19-40d7-b564-48bb2020c087", + "x-ms-routing-request-id": "WESTUS2:20210616T000028Z:3feadf7d-ea19-40d7-b564-48bb2020c087" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-cc9b6ff757ba6f4e86235bca1191a04e-d9f24498355c9045-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-465ab45c760fb44694011b6d3d8ddca4-eab5b3afc6676d44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cec09a8ec6483d8ae6dff6faace7ce9", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:23 GMT", + "Date": "Wed, 16 Jun 2021 00:00:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3b44030-726f-420f-803f-7134ed991961", + "x-ms-correlation-request-id": "357d46a7-b5b8-4803-8afa-dc2f9255aad8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "b3b44030-726f-420f-803f-7134ed991961", - "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:b3b44030-726f-420f-803f-7134ed991961" + "x-ms-request-id": "357d46a7-b5b8-4803-8afa-dc2f9255aad8", + "x-ms-routing-request-id": "WESTUS2:20210616T000029Z:357d46a7-b5b8-4803-8afa-dc2f9255aad8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", @@ -92,7 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-8772099acee454489604e635513fe785-28f3ee92398e1046-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "142fbe2561211c9c917da1a94d5c97ad", "x-ms-return-client-request-id": "true" }, @@ -106,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:23 GMT", + "Date": "Wed, 16 Jun 2021 00:00:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff90e475-5568-4d1d-ba98-48a13e399d9c", + "x-ms-correlation-request-id": "7890dd2a-1036-4b92-8b64-315713f46f9d", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "ff90e475-5568-4d1d-ba98-48a13e399d9c", - "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:ff90e475-5568-4d1d-ba98-48a13e399d9c" + "x-ms-request-id": "7890dd2a-1036-4b92-8b64-315713f46f9d", + "x-ms-routing-request-id": "WESTUS2:20210616T000029Z:7890dd2a-1036-4b92-8b64-315713f46f9d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9462", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json index 5aa969696e5d..7006f0a32a39 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg().json @@ -6,7 +6,8 @@ "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.19043 )", + "Request-Id": "|281dd4e4-411af037d68e2542.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0cd6711cd80bb05c1a927b057ac8ad2", "x-ms-return-client-request-id": "true" }, @@ -14,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:23 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93a45438-6d00-40eb-ac34-832514dd0b8a", + "x-ms-correlation-request-id": "8557acf3-0cb0-4c40-abf6-f79b45fcb066", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "93a45438-6d00-40eb-ac34-832514dd0b8a", - "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:93a45438-6d00-40eb-ac34-832514dd0b8a" + "x-ms-request-id": "8557acf3-0cb0-4c40-abf6-f79b45fcb066", + "x-ms-routing-request-id": "WESTUS2:20210616T000030Z:8557acf3-0cb0-4c40-abf6-f79b45fcb066" }, "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", @@ -49,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-2c5ec524883db74fbe9aa1f08eecfd15-8acf2588a6c1be47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9e2ce31dab08144fafbf6f658f8032a6-20915b8269b6b040-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae28f93f6f2cd0fc03cbac7ecb0ba451", "x-ms-return-client-request-id": "true" }, @@ -63,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "942f2287-a648-45ae-b684-2e9cd40ee9c8", + "x-ms-correlation-request-id": "0f7840ff-dc61-42a9-91d2-5f17d7e58bb0", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "942f2287-a648-45ae-b684-2e9cd40ee9c8", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:942f2287-a648-45ae-b684-2e9cd40ee9c8" + "x-ms-request-id": "0f7840ff-dc61-42a9-91d2-5f17d7e58bb0", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:0f7840ff-dc61-42a9-91d2-5f17d7e58bb0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8404", @@ -90,7 +95,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3aa63aed44f4d08271b0ea71672b73ce", "x-ms-return-client-request-id": "true" }, @@ -99,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3c9ecdce-4c91-4684-9ceb-5a342fa8078f", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "3c9ecdce-4c91-4684-9ceb-5a342fa8078f", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:3c9ecdce-4c91-4684-9ceb-5a342fa8078f" + "x-ms-correlation-request-id": "ce3e53cf-7930-45a9-828a-56c7fa03311f", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "ce3e53cf-7930-45a9-828a-56c7fa03311f", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:ce3e53cf-7930-45a9-828a-56c7fa03311f" }, "ResponseBody": [] }, @@ -118,7 +123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71695e8297e4fb5376573d7c848a68d8", "x-ms-return-client-request-id": "true" }, @@ -127,17 +132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "da33cba2-f397-49c8-a0e5-90dc982f63ed", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "da33cba2-f397-49c8-a0e5-90dc982f63ed", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:da33cba2-f397-49c8-a0e5-90dc982f63ed" + "x-ms-correlation-request-id": "fd1c493d-2eb6-4a66-ac8e-73def628fcac", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "fd1c493d-2eb6-4a66-ac8e-73def628fcac", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:fd1c493d-2eb6-4a66-ac8e-73def628fcac" }, "ResponseBody": [] }, @@ -146,7 +151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5c2dd5722c0214855ae6924c7807734", "x-ms-return-client-request-id": "true" }, @@ -155,17 +160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:25 GMT", + "Date": "Wed, 16 Jun 2021 00:00:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6c2bfb14-40cd-492c-9fbd-ac6128fac3a9", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "6c2bfb14-40cd-492c-9fbd-ac6128fac3a9", - "x-ms-routing-request-id": "WESTUS2:20210519T185126Z:6c2bfb14-40cd-492c-9fbd-ac6128fac3a9" + "x-ms-correlation-request-id": "78dc2981-9eb5-4a4d-960f-665ee8d2c43e", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "78dc2981-9eb5-4a4d-960f-665ee8d2c43e", + "x-ms-routing-request-id": "WESTUS2:20210616T000032Z:78dc2981-9eb5-4a4d-960f-665ee8d2c43e" }, "ResponseBody": [] }, @@ -174,7 +179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09ef4dba01c124ea814f0bb18e697247", "x-ms-return-client-request-id": "true" }, @@ -183,17 +188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:26 GMT", + "Date": "Wed, 16 Jun 2021 00:00:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "64eb8a33-886f-46bd-8925-d07bacffa992", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "64eb8a33-886f-46bd-8925-d07bacffa992", - "x-ms-routing-request-id": "WESTUS2:20210519T185127Z:64eb8a33-886f-46bd-8925-d07bacffa992" + "x-ms-correlation-request-id": "0e3073de-f8ae-4fac-ad13-0c25f4aebfa1", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "0e3073de-f8ae-4fac-ad13-0c25f4aebfa1", + "x-ms-routing-request-id": "WESTUS2:20210616T000033Z:0e3073de-f8ae-4fac-ad13-0c25f4aebfa1" }, "ResponseBody": [] }, @@ -202,7 +207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7baaa467ff795fdc16481b352d2f34f6", "x-ms-return-client-request-id": "true" }, @@ -211,17 +216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:27 GMT", + "Date": "Wed, 16 Jun 2021 00:00:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b2f4a4c5-a51e-4c01-88fc-91c435731655", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b2f4a4c5-a51e-4c01-88fc-91c435731655", - "x-ms-routing-request-id": "WESTUS2:20210519T185128Z:b2f4a4c5-a51e-4c01-88fc-91c435731655" + "x-ms-correlation-request-id": "4d9eb339-761b-49ae-b392-79fbd689c77d", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "4d9eb339-761b-49ae-b392-79fbd689c77d", + "x-ms-routing-request-id": "WESTUS2:20210616T000034Z:4d9eb339-761b-49ae-b392-79fbd689c77d" }, "ResponseBody": [] }, @@ -230,7 +235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37c108e05f9a5517f39e7470179692ec", "x-ms-return-client-request-id": "true" }, @@ -239,17 +244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:28 GMT", + "Date": "Wed, 16 Jun 2021 00:00:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f0247fc6-54c4-4b63-b5fa-983c22ae592d", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f0247fc6-54c4-4b63-b5fa-983c22ae592d", - "x-ms-routing-request-id": "WESTUS2:20210519T185129Z:f0247fc6-54c4-4b63-b5fa-983c22ae592d" + "x-ms-correlation-request-id": "35789ebc-411d-4840-97fa-b43eff1f9b25", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "35789ebc-411d-4840-97fa-b43eff1f9b25", + "x-ms-routing-request-id": "WESTUS2:20210616T000035Z:35789ebc-411d-4840-97fa-b43eff1f9b25" }, "ResponseBody": [] }, @@ -258,7 +263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23bc223bfbd5baba7090f278e6b4f652", "x-ms-return-client-request-id": "true" }, @@ -267,17 +272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:29 GMT", + "Date": "Wed, 16 Jun 2021 00:00:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "801e0495-7b1e-42da-9e97-fe656d094c44", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "801e0495-7b1e-42da-9e97-fe656d094c44", - "x-ms-routing-request-id": "WESTUS2:20210519T185130Z:801e0495-7b1e-42da-9e97-fe656d094c44" + "x-ms-correlation-request-id": "d61dfff6-2926-4e95-94fc-f29960d200b5", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "d61dfff6-2926-4e95-94fc-f29960d200b5", + "x-ms-routing-request-id": "WESTUS2:20210616T000036Z:d61dfff6-2926-4e95-94fc-f29960d200b5" }, "ResponseBody": [] }, @@ -286,7 +291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85d1151b3ba708ac8c5488db8b6c4880", "x-ms-return-client-request-id": "true" }, @@ -295,17 +300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:30 GMT", + "Date": "Wed, 16 Jun 2021 00:00:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "35f79968-f0b9-47a8-b5e7-c2f3141a4c09", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "35f79968-f0b9-47a8-b5e7-c2f3141a4c09", - "x-ms-routing-request-id": "WESTUS2:20210519T185131Z:35f79968-f0b9-47a8-b5e7-c2f3141a4c09" + "x-ms-correlation-request-id": "d9dc380f-e488-4b38-bc1e-7a13517ef554", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "d9dc380f-e488-4b38-bc1e-7a13517ef554", + "x-ms-routing-request-id": "WESTUS2:20210616T000037Z:d9dc380f-e488-4b38-bc1e-7a13517ef554" }, "ResponseBody": [] }, @@ -314,7 +319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0bf92fb51172e4214e06c60a6c9e6f3e", "x-ms-return-client-request-id": "true" }, @@ -323,17 +328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:31 GMT", + "Date": "Wed, 16 Jun 2021 00:00:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "897a2953-cd00-4bed-a9a7-00435c3d3161", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "897a2953-cd00-4bed-a9a7-00435c3d3161", - "x-ms-routing-request-id": "WESTUS2:20210519T185132Z:897a2953-cd00-4bed-a9a7-00435c3d3161" + "x-ms-correlation-request-id": "6dc7d740-b566-4c23-beed-034931f6d26c", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "6dc7d740-b566-4c23-beed-034931f6d26c", + "x-ms-routing-request-id": "WESTUS2:20210616T000038Z:6dc7d740-b566-4c23-beed-034931f6d26c" }, "ResponseBody": [] }, @@ -342,7 +347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "025521a80cc5004475b4968073df2f04", "x-ms-return-client-request-id": "true" }, @@ -351,17 +356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:32 GMT", + "Date": "Wed, 16 Jun 2021 00:00:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a1d9348d-04b3-477c-b534-3e5b7faf0639", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "a1d9348d-04b3-477c-b534-3e5b7faf0639", - "x-ms-routing-request-id": "WESTUS2:20210519T185133Z:a1d9348d-04b3-477c-b534-3e5b7faf0639" + "x-ms-correlation-request-id": "1b39d957-6c95-48d3-a650-1a61a64565df", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "1b39d957-6c95-48d3-a650-1a61a64565df", + "x-ms-routing-request-id": "WESTUS2:20210616T000039Z:1b39d957-6c95-48d3-a650-1a61a64565df" }, "ResponseBody": [] }, @@ -370,7 +375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b6c37247eabb09e0f3ec37a175a29bee", "x-ms-return-client-request-id": "true" }, @@ -379,17 +384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:33 GMT", + "Date": "Wed, 16 Jun 2021 00:00:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d064c9d1-c812-4fae-be85-5c7c503da561", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "d064c9d1-c812-4fae-be85-5c7c503da561", - "x-ms-routing-request-id": "WESTUS2:20210519T185134Z:d064c9d1-c812-4fae-be85-5c7c503da561" + "x-ms-correlation-request-id": "90f759e0-e1d1-4a1c-8574-4ace508a180a", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "90f759e0-e1d1-4a1c-8574-4ace508a180a", + "x-ms-routing-request-id": "WESTUS2:20210616T000040Z:90f759e0-e1d1-4a1c-8574-4ace508a180a" }, "ResponseBody": [] }, @@ -398,7 +403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "693349e44617a8baeaf996bd7aa0706f", "x-ms-return-client-request-id": "true" }, @@ -407,17 +412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:34 GMT", + "Date": "Wed, 16 Jun 2021 00:00:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e645ffc0-7ecc-4e97-bb7b-41036efab78a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "e645ffc0-7ecc-4e97-bb7b-41036efab78a", - "x-ms-routing-request-id": "WESTUS2:20210519T185135Z:e645ffc0-7ecc-4e97-bb7b-41036efab78a" + "x-ms-correlation-request-id": "dc7bbe05-cb2a-40be-b39b-f0d336f89c21", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "dc7bbe05-cb2a-40be-b39b-f0d336f89c21", + "x-ms-routing-request-id": "WESTUS2:20210616T000041Z:dc7bbe05-cb2a-40be-b39b-f0d336f89c21" }, "ResponseBody": [] }, @@ -426,7 +431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fac2c1d6b9dabd83414b0ed9d5a38ad2", "x-ms-return-client-request-id": "true" }, @@ -435,17 +440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:35 GMT", + "Date": "Wed, 16 Jun 2021 00:00:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7fc488d3-7c50-40db-9d1f-a3823154c187", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "7fc488d3-7c50-40db-9d1f-a3823154c187", - "x-ms-routing-request-id": "WESTUS2:20210519T185136Z:7fc488d3-7c50-40db-9d1f-a3823154c187" + "x-ms-correlation-request-id": "e695a7a0-45e9-462a-b83a-b9e7dc1cdfbf", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "e695a7a0-45e9-462a-b83a-b9e7dc1cdfbf", + "x-ms-routing-request-id": "WESTUS2:20210616T000042Z:e695a7a0-45e9-462a-b83a-b9e7dc1cdfbf" }, "ResponseBody": [] }, @@ -454,7 +459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a9ca719c5ab01edb71acbc154228f53", "x-ms-return-client-request-id": "true" }, @@ -463,17 +468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:36 GMT", + "Date": "Wed, 16 Jun 2021 00:00:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "78b3b3cf-9e9a-4de6-8314-0d6638dd1340", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "78b3b3cf-9e9a-4de6-8314-0d6638dd1340", - "x-ms-routing-request-id": "WESTUS2:20210519T185137Z:78b3b3cf-9e9a-4de6-8314-0d6638dd1340" + "x-ms-correlation-request-id": "d056ed73-379d-4c30-a0ef-ad871d11ac02", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "d056ed73-379d-4c30-a0ef-ad871d11ac02", + "x-ms-routing-request-id": "WESTUS2:20210616T000043Z:d056ed73-379d-4c30-a0ef-ad871d11ac02" }, "ResponseBody": [] }, @@ -482,7 +487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3cac77ba1df2b13c67628cb38e1d347", "x-ms-return-client-request-id": "true" }, @@ -491,17 +496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:37 GMT", + "Date": "Wed, 16 Jun 2021 00:00:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "510c0f9c-3e23-4877-8b7a-516a9c31f6f5", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "510c0f9c-3e23-4877-8b7a-516a9c31f6f5", - "x-ms-routing-request-id": "WESTUS2:20210519T185138Z:510c0f9c-3e23-4877-8b7a-516a9c31f6f5" + "x-ms-correlation-request-id": "9feac43f-eed0-4cc8-8187-b1e99670befb", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "9feac43f-eed0-4cc8-8187-b1e99670befb", + "x-ms-routing-request-id": "WESTUS2:20210616T000044Z:9feac43f-eed0-4cc8-8187-b1e99670befb" }, "ResponseBody": [] }, @@ -510,7 +515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2a4c36f460411c3d4c142c0edc2681f", "x-ms-return-client-request-id": "true" }, @@ -519,17 +524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:38 GMT", + "Date": "Wed, 16 Jun 2021 00:00:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "795c37d0-5b1d-4a70-b6aa-2360b2f818bd", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "795c37d0-5b1d-4a70-b6aa-2360b2f818bd", - "x-ms-routing-request-id": "WESTUS2:20210519T185139Z:795c37d0-5b1d-4a70-b6aa-2360b2f818bd" + "x-ms-correlation-request-id": "9a3307fe-f954-41b9-93c9-54ebd1c214f4", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "9a3307fe-f954-41b9-93c9-54ebd1c214f4", + "x-ms-routing-request-id": "WESTUS2:20210616T000045Z:9a3307fe-f954-41b9-93c9-54ebd1c214f4" }, "ResponseBody": [] }, @@ -538,7 +543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d5dbabcd7d878f2947063359d21c9d6", "x-ms-return-client-request-id": "true" }, @@ -547,17 +552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:39 GMT", + "Date": "Wed, 16 Jun 2021 00:00:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fb61a4aa-5f01-49fa-83bf-5e0b63b699f7", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "fb61a4aa-5f01-49fa-83bf-5e0b63b699f7", - "x-ms-routing-request-id": "WESTUS2:20210519T185140Z:fb61a4aa-5f01-49fa-83bf-5e0b63b699f7" + "x-ms-correlation-request-id": "512852b8-bef7-4775-9923-5dc5fe36ae62", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "512852b8-bef7-4775-9923-5dc5fe36ae62", + "x-ms-routing-request-id": "WESTUS2:20210616T000046Z:512852b8-bef7-4775-9923-5dc5fe36ae62" }, "ResponseBody": [] }, @@ -566,7 +571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90528347bc7d344f03b9df1e5e533d04", "x-ms-return-client-request-id": "true" }, @@ -575,17 +580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:41 GMT", + "Date": "Wed, 16 Jun 2021 00:00:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c6a1512d-3969-4db4-8763-762aa53fde2c", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "c6a1512d-3969-4db4-8763-762aa53fde2c", - "x-ms-routing-request-id": "WESTUS2:20210519T185141Z:c6a1512d-3969-4db4-8763-762aa53fde2c" + "x-ms-correlation-request-id": "66896922-4117-4b79-a211-1245287ddc16", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "66896922-4117-4b79-a211-1245287ddc16", + "x-ms-routing-request-id": "WESTUS2:20210616T000048Z:66896922-4117-4b79-a211-1245287ddc16" }, "ResponseBody": [] }, @@ -594,7 +599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d0f080dc583976fd02c3e93e38e73b2", "x-ms-return-client-request-id": "true" }, @@ -603,17 +608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:42 GMT", + "Date": "Wed, 16 Jun 2021 00:00:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "256ac5d1-f0dc-42fa-9353-28b036a66e93", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "256ac5d1-f0dc-42fa-9353-28b036a66e93", - "x-ms-routing-request-id": "WESTUS2:20210519T185143Z:256ac5d1-f0dc-42fa-9353-28b036a66e93" + "x-ms-correlation-request-id": "c16c5170-c608-45df-bdc0-7bdf1f0aabec", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "c16c5170-c608-45df-bdc0-7bdf1f0aabec", + "x-ms-routing-request-id": "WESTUS2:20210616T000049Z:c16c5170-c608-45df-bdc0-7bdf1f0aabec" }, "ResponseBody": [] }, @@ -622,7 +627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a786bf8d76f00a26a280a1ff8d41941", "x-ms-return-client-request-id": "true" }, @@ -631,17 +636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:44 GMT", + "Date": "Wed, 16 Jun 2021 00:00:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6", - "x-ms-routing-request-id": "WESTUS2:20210519T185144Z:5961d20b-cd54-4eb8-bcd6-0b5d5f8f6ed6" + "x-ms-correlation-request-id": "df6a7fd3-b108-4e09-89f7-47cd85a3e27c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "df6a7fd3-b108-4e09-89f7-47cd85a3e27c", + "x-ms-routing-request-id": "WESTUS2:20210616T000050Z:df6a7fd3-b108-4e09-89f7-47cd85a3e27c" }, "ResponseBody": [] }, @@ -650,7 +655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94285f334b12825214bac0507dbc5175", "x-ms-return-client-request-id": "true" }, @@ -659,17 +664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:45 GMT", + "Date": "Wed, 16 Jun 2021 00:00:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "2edca69c-b3dc-4d74-89ee-b7684453510c", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "2edca69c-b3dc-4d74-89ee-b7684453510c", - "x-ms-routing-request-id": "WESTUS2:20210519T185145Z:2edca69c-b3dc-4d74-89ee-b7684453510c" + "x-ms-correlation-request-id": "543dccff-8306-4001-b304-67f411e7fe50", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "543dccff-8306-4001-b304-67f411e7fe50", + "x-ms-routing-request-id": "WESTUS2:20210616T000051Z:543dccff-8306-4001-b304-67f411e7fe50" }, "ResponseBody": [] }, @@ -678,7 +683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2262c45d3da3594660e125aba4f9ffc", "x-ms-return-client-request-id": "true" }, @@ -687,17 +692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:46 GMT", + "Date": "Wed, 16 Jun 2021 00:00:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "782a421d-0aea-467d-a096-438caabb5369", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "782a421d-0aea-467d-a096-438caabb5369", - "x-ms-routing-request-id": "WESTUS2:20210519T185146Z:782a421d-0aea-467d-a096-438caabb5369" + "x-ms-correlation-request-id": "68b077cb-c441-4508-bbfe-2e1c985e7834", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "68b077cb-c441-4508-bbfe-2e1c985e7834", + "x-ms-routing-request-id": "WESTUS2:20210616T000052Z:68b077cb-c441-4508-bbfe-2e1c985e7834" }, "ResponseBody": [] }, @@ -706,7 +711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8360fd13de65ac9f19f655b5175182ae", "x-ms-return-client-request-id": "true" }, @@ -715,17 +720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:47 GMT", + "Date": "Wed, 16 Jun 2021 00:00:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ee1b3c30-993d-4d57-a59a-82af64afb97f", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "ee1b3c30-993d-4d57-a59a-82af64afb97f", - "x-ms-routing-request-id": "WESTUS2:20210519T185147Z:ee1b3c30-993d-4d57-a59a-82af64afb97f" + "x-ms-correlation-request-id": "40594ded-0dd2-47ff-9317-b55380594bfe", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "40594ded-0dd2-47ff-9317-b55380594bfe", + "x-ms-routing-request-id": "WESTUS2:20210616T000053Z:40594ded-0dd2-47ff-9317-b55380594bfe" }, "ResponseBody": [] }, @@ -734,7 +739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbda94d727ae5f66caf22e0438f7c7c5", "x-ms-return-client-request-id": "true" }, @@ -743,17 +748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:48 GMT", + "Date": "Wed, 16 Jun 2021 00:00:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "59820277-54a3-49e4-b6af-e13130db8d89", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "59820277-54a3-49e4-b6af-e13130db8d89", - "x-ms-routing-request-id": "WESTUS2:20210519T185148Z:59820277-54a3-49e4-b6af-e13130db8d89" + "x-ms-correlation-request-id": "75797e6b-4462-47fb-8395-570b61089dd4", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "75797e6b-4462-47fb-8395-570b61089dd4", + "x-ms-routing-request-id": "WESTUS2:20210616T000054Z:75797e6b-4462-47fb-8395-570b61089dd4" }, "ResponseBody": [] }, @@ -762,7 +767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "803dc41acd5c66108d79d9e47edf1d14", "x-ms-return-client-request-id": "true" }, @@ -771,17 +776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:49 GMT", + "Date": "Wed, 16 Jun 2021 00:00:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c8b72423-e884-4312-84b9-cc628998eca7", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "c8b72423-e884-4312-84b9-cc628998eca7", - "x-ms-routing-request-id": "WESTUS2:20210519T185149Z:c8b72423-e884-4312-84b9-cc628998eca7" + "x-ms-correlation-request-id": "e48afa35-8c18-46e7-b540-a8031616c6a8", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "e48afa35-8c18-46e7-b540-a8031616c6a8", + "x-ms-routing-request-id": "WESTUS2:20210616T000055Z:e48afa35-8c18-46e7-b540-a8031616c6a8" }, "ResponseBody": [] }, @@ -790,7 +795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2683648cd475ec4d9600b972b09b7421", "x-ms-return-client-request-id": "true" }, @@ -799,17 +804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:50 GMT", + "Date": "Wed, 16 Jun 2021 00:00:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5210f3cb-7e03-4003-a7f9-70e00947fe79", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "5210f3cb-7e03-4003-a7f9-70e00947fe79", - "x-ms-routing-request-id": "WESTUS2:20210519T185150Z:5210f3cb-7e03-4003-a7f9-70e00947fe79" + "x-ms-correlation-request-id": "7c3c94e2-30c9-43b3-92fa-b0745469081e", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "7c3c94e2-30c9-43b3-92fa-b0745469081e", + "x-ms-routing-request-id": "WESTUS2:20210616T000056Z:7c3c94e2-30c9-43b3-92fa-b0745469081e" }, "ResponseBody": [] }, @@ -818,7 +823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "539a902e0214095284733e354d82e1eb", "x-ms-return-client-request-id": "true" }, @@ -827,17 +832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:51 GMT", + "Date": "Wed, 16 Jun 2021 00:00:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c2cdccf0-7f8b-4c18-afb7-3636eb29702f", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "c2cdccf0-7f8b-4c18-afb7-3636eb29702f", - "x-ms-routing-request-id": "WESTUS2:20210519T185151Z:c2cdccf0-7f8b-4c18-afb7-3636eb29702f" + "x-ms-correlation-request-id": "bc688e3f-5c0d-4ea0-85b1-f0e9f66b63bd", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "bc688e3f-5c0d-4ea0-85b1-f0e9f66b63bd", + "x-ms-routing-request-id": "WESTUS2:20210616T000057Z:bc688e3f-5c0d-4ea0-85b1-f0e9f66b63bd" }, "ResponseBody": [] }, @@ -846,7 +851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d47819d5a074464f7651e95b149db6f1", "x-ms-return-client-request-id": "true" }, @@ -855,17 +860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:52 GMT", + "Date": "Wed, 16 Jun 2021 00:00:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e9de4430-2efd-4e4b-850e-7e2b5a3f40e4", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "e9de4430-2efd-4e4b-850e-7e2b5a3f40e4", - "x-ms-routing-request-id": "WESTUS2:20210519T185152Z:e9de4430-2efd-4e4b-850e-7e2b5a3f40e4" + "x-ms-correlation-request-id": "3466defd-7617-4591-a1f6-766fb8e425a0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "3466defd-7617-4591-a1f6-766fb8e425a0", + "x-ms-routing-request-id": "WESTUS2:20210616T000058Z:3466defd-7617-4591-a1f6-766fb8e425a0" }, "ResponseBody": [] }, @@ -874,7 +879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edb5b704ca4489001179a20196189e14", "x-ms-return-client-request-id": "true" }, @@ -883,17 +888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:53 GMT", + "Date": "Wed, 16 Jun 2021 00:00:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "61de1599-a7e8-48a8-a1b8-53bb41df4816", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "61de1599-a7e8-48a8-a1b8-53bb41df4816", - "x-ms-routing-request-id": "WESTUS2:20210519T185153Z:61de1599-a7e8-48a8-a1b8-53bb41df4816" + "x-ms-correlation-request-id": "bd30db6c-6ee6-4f4b-8b4c-51936a21a29f", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "bd30db6c-6ee6-4f4b-8b4c-51936a21a29f", + "x-ms-routing-request-id": "WESTUS2:20210616T000059Z:bd30db6c-6ee6-4f4b-8b4c-51936a21a29f" }, "ResponseBody": [] }, @@ -902,7 +907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "969dcd1e9f238dac4054dcc218f6f5e7", "x-ms-return-client-request-id": "true" }, @@ -911,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:54 GMT", + "Date": "Wed, 16 Jun 2021 00:01:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8f56f803-e054-4094-91d8-ffaaf27c36a6", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "8f56f803-e054-4094-91d8-ffaaf27c36a6", - "x-ms-routing-request-id": "WESTUS2:20210519T185154Z:8f56f803-e054-4094-91d8-ffaaf27c36a6" + "x-ms-correlation-request-id": "be1cab71-e07b-4511-96b6-e29ca8c94b7d", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "be1cab71-e07b-4511-96b6-e29ca8c94b7d", + "x-ms-routing-request-id": "WESTUS2:20210616T000100Z:be1cab71-e07b-4511-96b6-e29ca8c94b7d" }, "ResponseBody": [] }, @@ -930,7 +935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95304cbcf3cd0aa619eec3fafe4eaf5e", "x-ms-return-client-request-id": "true" }, @@ -939,17 +944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:55 GMT", + "Date": "Wed, 16 Jun 2021 00:01:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3260611e-2c94-4df8-9a28-50cd03647ebe", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "3260611e-2c94-4df8-9a28-50cd03647ebe", - "x-ms-routing-request-id": "WESTUS2:20210519T185155Z:3260611e-2c94-4df8-9a28-50cd03647ebe" + "x-ms-correlation-request-id": "ed674fda-14f8-462b-b3b8-992b4aea18d3", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "ed674fda-14f8-462b-b3b8-992b4aea18d3", + "x-ms-routing-request-id": "WESTUS2:20210616T000101Z:ed674fda-14f8-462b-b3b8-992b4aea18d3" }, "ResponseBody": [] }, @@ -958,24 +963,82 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "463cd5b320ff65ce0b27adf0ed3d701a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:01:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5f7238e1-abad-4cdb-b1d8-e3d0fdf878ba", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "5f7238e1-abad-4cdb-b1d8-e3d0fdf878ba", + "x-ms-routing-request-id": "WESTUS2:20210616T000102Z:5f7238e1-abad-4cdb-b1d8-e3d0fdf878ba" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-1cb579e36004824582f33a9588acebe4-0bfa156689f33244-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a44bb8408e72b4726937c34dcb28ff2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:01:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b0c0c1e5-7c5e-428f-a7c6-20e63a6b49df", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "b0c0c1e5-7c5e-428f-a7c6-20e63a6b49df", + "x-ms-routing-request-id": "WESTUS2:20210616T000103Z:b0c0c1e5-7c5e-428f-a7c6-20e63a6b49df" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc4NDA0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-0e2ed35b29c4db49ba750ab784546a91-5c1015a9e0d54747-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "430f7ea4aeb99ce77dcb8aa545b61ddb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:56 GMT", + "Date": "Wed, 16 Jun 2021 00:01:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17bebc16-4eaa-4637-87fd-6babfd33bac0", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "17bebc16-4eaa-4637-87fd-6babfd33bac0", - "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:17bebc16-4eaa-4637-87fd-6babfd33bac0" + "x-ms-correlation-request-id": "5afcbd92-291c-4577-9539-34a9bb46c85e", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "5afcbd92-291c-4577-9539-34a9bb46c85e", + "x-ms-routing-request-id": "WESTUS2:20210616T000104Z:5afcbd92-291c-4577-9539-34a9bb46c85e" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json index 43b807e6a0fb..63e200e15e0e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/DeleteRg()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef29-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36ca397932140e126372a7087188334f", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "642f6ec5-93ff-4c6a-b4f6-8545be57a88e", + "x-ms-correlation-request-id": "74dab783-c7c6-4e1c-b2c8-f58621d9f65e", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "642f6ec5-93ff-4c6a-b4f6-8545be57a88e", - "x-ms-routing-request-id": "WESTUS2:20210519T185124Z:642f6ec5-93ff-4c6a-b4f6-8545be57a88e" + "x-ms-request-id": "74dab783-c7c6-4e1c-b2c8-f58621d9f65e", + "x-ms-routing-request-id": "WESTUS2:20210616T000030Z:74dab783-c7c6-4e1c-b2c8-f58621d9f65e" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0f606f7eb0ad2e42b59fdd45fea0d09d-2f0b6b7d9841a240-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a563a1b18255634ab4ea4aecbcb513fe-3f396e987a235b41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2fa65b3af59b8c04d4be3d77f82d2af", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4447ecd0-b45b-484f-b638-6c2252f4eb2c", + "x-ms-correlation-request-id": "5ce64235-05ba-4de8-92ac-0990f2b9ad91", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4447ecd0-b45b-484f-b638-6c2252f4eb2c", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:4447ecd0-b45b-484f-b638-6c2252f4eb2c" + "x-ms-request-id": "5ce64235-05ba-4de8-92ac-0990f2b9ad91", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:5ce64235-05ba-4de8-92ac-0990f2b9ad91" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3087", @@ -91,8 +94,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-5c88844d8c275c44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-284f45d2bbcaf54f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d80061beada5eb9763bfaae39996fb94", "x-ms-return-client-request-id": "true" }, @@ -101,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "90da366a-7cc9-454a-a464-ffb2ef9feac1", + "x-ms-correlation-request-id": "9ae66f20-6655-4995-99f2-4f62f991db78", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "90da366a-7cc9-454a-a464-ffb2ef9feac1", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:90da366a-7cc9-454a-a464-ffb2ef9feac1" + "x-ms-request-id": "9ae66f20-6655-4995-99f2-4f62f991db78", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:9ae66f20-6655-4995-99f2-4f62f991db78" }, "ResponseBody": [] }, @@ -120,8 +123,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-0fe7dec1f64b3b40-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-b700023e8b35de4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "26b359d576330684ce0e3f9a04dd1fb6", "x-ms-return-client-request-id": "true" }, @@ -130,17 +133,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:24 GMT", + "Date": "Wed, 16 Jun 2021 00:00:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8", + "x-ms-correlation-request-id": "86f43616-c565-4b6d-85f6-24390314bb99", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8", - "x-ms-routing-request-id": "WESTUS2:20210519T185125Z:f2034a4a-4bc9-4aca-b0b6-3e62ab33fad8" + "x-ms-request-id": "86f43616-c565-4b6d-85f6-24390314bb99", + "x-ms-routing-request-id": "WESTUS2:20210616T000031Z:86f43616-c565-4b6d-85f6-24390314bb99" }, "ResponseBody": [] }, @@ -149,8 +152,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fbf4f507676b1854276ce27e6afbc2c", "x-ms-return-client-request-id": "true" }, @@ -159,17 +162,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:25 GMT", + "Date": "Wed, 16 Jun 2021 00:00:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8fedd407-a01a-4ca7-82f4-9db6041abc6c", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "8fedd407-a01a-4ca7-82f4-9db6041abc6c", - "x-ms-routing-request-id": "WESTUS2:20210519T185126Z:8fedd407-a01a-4ca7-82f4-9db6041abc6c" + "x-ms-correlation-request-id": "14ef4fd6-a016-43fc-a5da-d17d6cf73482", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "14ef4fd6-a016-43fc-a5da-d17d6cf73482", + "x-ms-routing-request-id": "WESTUS2:20210616T000032Z:14ef4fd6-a016-43fc-a5da-d17d6cf73482" }, "ResponseBody": [] }, @@ -178,8 +181,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f0dbadbd5e3a1618a058d1acd85842c", "x-ms-return-client-request-id": "true" }, @@ -188,17 +191,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:26 GMT", + "Date": "Wed, 16 Jun 2021 00:00:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "2ae2fb62-63d4-40c1-b535-2aec28375178", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "2ae2fb62-63d4-40c1-b535-2aec28375178", - "x-ms-routing-request-id": "WESTUS2:20210519T185127Z:2ae2fb62-63d4-40c1-b535-2aec28375178" + "x-ms-correlation-request-id": "01538bf6-4295-42d9-861f-3effe665788a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "01538bf6-4295-42d9-861f-3effe665788a", + "x-ms-routing-request-id": "WESTUS2:20210616T000033Z:01538bf6-4295-42d9-861f-3effe665788a" }, "ResponseBody": [] }, @@ -207,8 +210,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df96105e73775f79d301e3bca75c201e", "x-ms-return-client-request-id": "true" }, @@ -217,17 +220,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:27 GMT", + "Date": "Wed, 16 Jun 2021 00:00:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fc86d32b-46a3-46d7-a291-ee8e5b72f535", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "fc86d32b-46a3-46d7-a291-ee8e5b72f535", - "x-ms-routing-request-id": "WESTUS2:20210519T185128Z:fc86d32b-46a3-46d7-a291-ee8e5b72f535" + "x-ms-correlation-request-id": "181d91d9-8afa-4d42-ad72-8853f91c4056", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "181d91d9-8afa-4d42-ad72-8853f91c4056", + "x-ms-routing-request-id": "WESTUS2:20210616T000034Z:181d91d9-8afa-4d42-ad72-8853f91c4056" }, "ResponseBody": [] }, @@ -236,8 +239,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49be1351e0d07bd3ed1ee570e96ae4bd", "x-ms-return-client-request-id": "true" }, @@ -246,17 +249,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:28 GMT", + "Date": "Wed, 16 Jun 2021 00:00:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d", - "x-ms-routing-request-id": "WESTUS2:20210519T185129Z:6dfc9b17-ef9d-4a16-a91b-b95bf940cd2d" + "x-ms-correlation-request-id": "f23848c3-f78f-4ad0-9a38-87d5bb05e51f", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "f23848c3-f78f-4ad0-9a38-87d5bb05e51f", + "x-ms-routing-request-id": "WESTUS2:20210616T000035Z:f23848c3-f78f-4ad0-9a38-87d5bb05e51f" }, "ResponseBody": [] }, @@ -265,8 +268,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5c9a1f1dd1967b441ad6be1f1a4f92d", "x-ms-return-client-request-id": "true" }, @@ -275,17 +278,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:29 GMT", + "Date": "Wed, 16 Jun 2021 00:00:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b8eb23fb-8463-47b6-aaeb-0af5641368d2", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "b8eb23fb-8463-47b6-aaeb-0af5641368d2", - "x-ms-routing-request-id": "WESTUS2:20210519T185130Z:b8eb23fb-8463-47b6-aaeb-0af5641368d2" + "x-ms-correlation-request-id": "7c14e728-8cdc-46de-a9aa-1e4a053d60ac", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7c14e728-8cdc-46de-a9aa-1e4a053d60ac", + "x-ms-routing-request-id": "WESTUS2:20210616T000036Z:7c14e728-8cdc-46de-a9aa-1e4a053d60ac" }, "ResponseBody": [] }, @@ -294,8 +297,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bac96fe53ac77d5c3c1af1588e097668", "x-ms-return-client-request-id": "true" }, @@ -304,17 +307,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:30 GMT", + "Date": "Wed, 16 Jun 2021 00:00:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ebac09af-010a-4a28-85b3-f8e025a483fd", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "ebac09af-010a-4a28-85b3-f8e025a483fd", - "x-ms-routing-request-id": "WESTUS2:20210519T185131Z:ebac09af-010a-4a28-85b3-f8e025a483fd" + "x-ms-correlation-request-id": "7e14a3d4-088b-4abb-8cad-7aa65f85bfd6", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "7e14a3d4-088b-4abb-8cad-7aa65f85bfd6", + "x-ms-routing-request-id": "WESTUS2:20210616T000037Z:7e14a3d4-088b-4abb-8cad-7aa65f85bfd6" }, "ResponseBody": [] }, @@ -323,8 +326,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05cb261d4a9374045e56082274f28a49", "x-ms-return-client-request-id": "true" }, @@ -333,17 +336,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:31 GMT", + "Date": "Wed, 16 Jun 2021 00:00:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "39698c4e-2afa-4630-89e2-d0b9e0c8aa43", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "39698c4e-2afa-4630-89e2-d0b9e0c8aa43", - "x-ms-routing-request-id": "WESTUS2:20210519T185132Z:39698c4e-2afa-4630-89e2-d0b9e0c8aa43" + "x-ms-correlation-request-id": "d4cdffd7-e437-4b8b-958d-5d0df5f62a54", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "d4cdffd7-e437-4b8b-958d-5d0df5f62a54", + "x-ms-routing-request-id": "WESTUS2:20210616T000038Z:d4cdffd7-e437-4b8b-958d-5d0df5f62a54" }, "ResponseBody": [] }, @@ -352,8 +355,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a8ab7252aa1b6f6454b98feeb5bd837", "x-ms-return-client-request-id": "true" }, @@ -362,17 +365,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:32 GMT", + "Date": "Wed, 16 Jun 2021 00:00:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "bc5fcdf7-d92b-42ac-bfa4-39aed87206f8", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "bc5fcdf7-d92b-42ac-bfa4-39aed87206f8", - "x-ms-routing-request-id": "WESTUS2:20210519T185133Z:bc5fcdf7-d92b-42ac-bfa4-39aed87206f8" + "x-ms-correlation-request-id": "020b53db-4ace-4730-a232-004c999a20aa", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "020b53db-4ace-4730-a232-004c999a20aa", + "x-ms-routing-request-id": "WESTUS2:20210616T000039Z:020b53db-4ace-4730-a232-004c999a20aa" }, "ResponseBody": [] }, @@ -381,8 +384,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cac40237f3d89a9a6a545b70323a094a", "x-ms-return-client-request-id": "true" }, @@ -391,17 +394,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:33 GMT", + "Date": "Wed, 16 Jun 2021 00:00:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "363739ac-4833-4988-85be-43ebad0a3d28", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "363739ac-4833-4988-85be-43ebad0a3d28", - "x-ms-routing-request-id": "WESTUS2:20210519T185134Z:363739ac-4833-4988-85be-43ebad0a3d28" + "x-ms-correlation-request-id": "dd302a10-6748-487a-943e-3c058418d7be", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "dd302a10-6748-487a-943e-3c058418d7be", + "x-ms-routing-request-id": "WESTUS2:20210616T000040Z:dd302a10-6748-487a-943e-3c058418d7be" }, "ResponseBody": [] }, @@ -410,8 +413,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d733a890fc7ef3c73015c047b1068902", "x-ms-return-client-request-id": "true" }, @@ -420,17 +423,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:34 GMT", + "Date": "Wed, 16 Jun 2021 00:00:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e544e277-fc99-43c9-9a3f-31295b3c72f2", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "e544e277-fc99-43c9-9a3f-31295b3c72f2", - "x-ms-routing-request-id": "WESTUS2:20210519T185135Z:e544e277-fc99-43c9-9a3f-31295b3c72f2" + "x-ms-correlation-request-id": "a4d59d90-2635-44d8-8d28-22a5d427b294", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "a4d59d90-2635-44d8-8d28-22a5d427b294", + "x-ms-routing-request-id": "WESTUS2:20210616T000041Z:a4d59d90-2635-44d8-8d28-22a5d427b294" }, "ResponseBody": [] }, @@ -439,8 +442,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71ead07dbf2e32701cf00f4cce85840a", "x-ms-return-client-request-id": "true" }, @@ -449,17 +452,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:35 GMT", + "Date": "Wed, 16 Jun 2021 00:00:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "686cf622-fc12-49cc-9991-29b98e87733c", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "686cf622-fc12-49cc-9991-29b98e87733c", - "x-ms-routing-request-id": "WESTUS2:20210519T185136Z:686cf622-fc12-49cc-9991-29b98e87733c" + "x-ms-correlation-request-id": "bda944e8-564d-4eea-8526-eb54c84c2a11", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "bda944e8-564d-4eea-8526-eb54c84c2a11", + "x-ms-routing-request-id": "WESTUS2:20210616T000042Z:bda944e8-564d-4eea-8526-eb54c84c2a11" }, "ResponseBody": [] }, @@ -468,8 +471,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "426d4e4201283bb83bd09ac33253e863", "x-ms-return-client-request-id": "true" }, @@ -478,17 +481,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:36 GMT", + "Date": "Wed, 16 Jun 2021 00:00:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cfa321a3-94bc-4bcc-85f5-7f7b23951933", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "cfa321a3-94bc-4bcc-85f5-7f7b23951933", - "x-ms-routing-request-id": "WESTUS2:20210519T185137Z:cfa321a3-94bc-4bcc-85f5-7f7b23951933" + "x-ms-correlation-request-id": "dc0bfddd-9504-43d6-8cc0-49784f43cb42", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "dc0bfddd-9504-43d6-8cc0-49784f43cb42", + "x-ms-routing-request-id": "WESTUS2:20210616T000043Z:dc0bfddd-9504-43d6-8cc0-49784f43cb42" }, "ResponseBody": [] }, @@ -497,8 +500,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "61f258cb974fd11c3701ba8eec7a24aa", "x-ms-return-client-request-id": "true" }, @@ -507,17 +510,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:37 GMT", + "Date": "Wed, 16 Jun 2021 00:00:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "98f84a11-c928-4227-b6e7-d996352564d5", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "98f84a11-c928-4227-b6e7-d996352564d5", - "x-ms-routing-request-id": "WESTUS2:20210519T185138Z:98f84a11-c928-4227-b6e7-d996352564d5" + "x-ms-correlation-request-id": "f2d62b02-7f3c-46e2-b910-aa3d9706c540", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "f2d62b02-7f3c-46e2-b910-aa3d9706c540", + "x-ms-routing-request-id": "WESTUS2:20210616T000044Z:f2d62b02-7f3c-46e2-b910-aa3d9706c540" }, "ResponseBody": [] }, @@ -526,8 +529,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6304b59146987cda18ae355d24acffc8", "x-ms-return-client-request-id": "true" }, @@ -536,17 +539,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:38 GMT", + "Date": "Wed, 16 Jun 2021 00:00:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0f0db7ce-a73f-421b-ac02-933dc73e1059", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "0f0db7ce-a73f-421b-ac02-933dc73e1059", - "x-ms-routing-request-id": "WESTUS2:20210519T185139Z:0f0db7ce-a73f-421b-ac02-933dc73e1059" + "x-ms-correlation-request-id": "6175f730-a166-4672-a200-163e621bf243", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "6175f730-a166-4672-a200-163e621bf243", + "x-ms-routing-request-id": "WESTUS2:20210616T000045Z:6175f730-a166-4672-a200-163e621bf243" }, "ResponseBody": [] }, @@ -555,8 +558,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7581ac072292aabb319c0a2646294fc1", "x-ms-return-client-request-id": "true" }, @@ -565,17 +568,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:39 GMT", + "Date": "Wed, 16 Jun 2021 00:00:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1130c06b-26fb-4f6c-8020-1a524129e1a5", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "1130c06b-26fb-4f6c-8020-1a524129e1a5", - "x-ms-routing-request-id": "WESTUS2:20210519T185140Z:1130c06b-26fb-4f6c-8020-1a524129e1a5" + "x-ms-correlation-request-id": "2a906539-4aee-4a1e-befb-8bd841f36d02", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "2a906539-4aee-4a1e-befb-8bd841f36d02", + "x-ms-routing-request-id": "WESTUS2:20210616T000046Z:2a906539-4aee-4a1e-befb-8bd841f36d02" }, "ResponseBody": [] }, @@ -584,8 +587,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d32efac854f84cb7d7649a062bfac8b", "x-ms-return-client-request-id": "true" }, @@ -594,17 +597,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:40 GMT", + "Date": "Wed, 16 Jun 2021 00:00:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3227f6be-d038-43ae-895a-4a1bed757879", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "3227f6be-d038-43ae-895a-4a1bed757879", - "x-ms-routing-request-id": "WESTUS2:20210519T185141Z:3227f6be-d038-43ae-895a-4a1bed757879" + "x-ms-correlation-request-id": "671607c4-7f66-4c9d-8cd3-e8cd89e7a63d", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "671607c4-7f66-4c9d-8cd3-e8cd89e7a63d", + "x-ms-routing-request-id": "WESTUS2:20210616T000047Z:671607c4-7f66-4c9d-8cd3-e8cd89e7a63d" }, "ResponseBody": [] }, @@ -613,8 +616,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4087f202aef86e17fa5a31fb3bb435ee", "x-ms-return-client-request-id": "true" }, @@ -623,17 +626,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:41 GMT", + "Date": "Wed, 16 Jun 2021 00:00:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "23cacdb8-68fb-4d8a-b3a3-72726b8a6a62", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "23cacdb8-68fb-4d8a-b3a3-72726b8a6a62", - "x-ms-routing-request-id": "WESTUS2:20210519T185142Z:23cacdb8-68fb-4d8a-b3a3-72726b8a6a62" + "x-ms-correlation-request-id": "78c68f01-f446-45d9-9ed7-d66289f78ee3", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "78c68f01-f446-45d9-9ed7-d66289f78ee3", + "x-ms-routing-request-id": "WESTUS2:20210616T000048Z:78c68f01-f446-45d9-9ed7-d66289f78ee3" }, "ResponseBody": [] }, @@ -642,8 +645,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34b0745f82798279e0fcf71cd91a4872", "x-ms-return-client-request-id": "true" }, @@ -652,17 +655,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:42 GMT", + "Date": "Wed, 16 Jun 2021 00:00:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "168b4348-e846-4bd7-a0c8-cd019cf8b379", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "168b4348-e846-4bd7-a0c8-cd019cf8b379", - "x-ms-routing-request-id": "WESTUS2:20210519T185143Z:168b4348-e846-4bd7-a0c8-cd019cf8b379" + "x-ms-correlation-request-id": "f824f5c4-4a27-4e3d-82ac-287a320e2716", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "f824f5c4-4a27-4e3d-82ac-287a320e2716", + "x-ms-routing-request-id": "WESTUS2:20210616T000049Z:f824f5c4-4a27-4e3d-82ac-287a320e2716" }, "ResponseBody": [] }, @@ -671,8 +674,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54247ff00fa2fdc8d8c482f553cf49c9", "x-ms-return-client-request-id": "true" }, @@ -681,17 +684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:44 GMT", + "Date": "Wed, 16 Jun 2021 00:00:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ccbd2796-6606-4c33-8451-26dc1efe75ed", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "ccbd2796-6606-4c33-8451-26dc1efe75ed", - "x-ms-routing-request-id": "WESTUS2:20210519T185144Z:ccbd2796-6606-4c33-8451-26dc1efe75ed" + "x-ms-correlation-request-id": "e1c6d683-8005-4769-a99f-9f88d5a76fbb", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "e1c6d683-8005-4769-a99f-9f88d5a76fbb", + "x-ms-routing-request-id": "WESTUS2:20210616T000050Z:e1c6d683-8005-4769-a99f-9f88d5a76fbb" }, "ResponseBody": [] }, @@ -700,8 +703,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed415b41770e801178055ffcb6fb94e0", "x-ms-return-client-request-id": "true" }, @@ -710,17 +713,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:45 GMT", + "Date": "Wed, 16 Jun 2021 00:00:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f2d83c31-c9b6-4dd7-a092-96f3b80b37ae", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "f2d83c31-c9b6-4dd7-a092-96f3b80b37ae", - "x-ms-routing-request-id": "WESTUS2:20210519T185145Z:f2d83c31-c9b6-4dd7-a092-96f3b80b37ae" + "x-ms-correlation-request-id": "c7538175-3260-4a35-8713-b3598fb0fcab", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "c7538175-3260-4a35-8713-b3598fb0fcab", + "x-ms-routing-request-id": "WESTUS2:20210616T000051Z:c7538175-3260-4a35-8713-b3598fb0fcab" }, "ResponseBody": [] }, @@ -729,8 +732,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc0bbf11e190504bacb35cb5ff842e10", "x-ms-return-client-request-id": "true" }, @@ -739,17 +742,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:46 GMT", + "Date": "Wed, 16 Jun 2021 00:00:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "45a1b570-8a42-4103-a8ef-b4b3df703e8a", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "45a1b570-8a42-4103-a8ef-b4b3df703e8a", - "x-ms-routing-request-id": "WESTUS2:20210519T185146Z:45a1b570-8a42-4103-a8ef-b4b3df703e8a" + "x-ms-correlation-request-id": "15768473-14cc-4d80-8cfd-7a18cd3cdc00", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "15768473-14cc-4d80-8cfd-7a18cd3cdc00", + "x-ms-routing-request-id": "WESTUS2:20210616T000053Z:15768473-14cc-4d80-8cfd-7a18cd3cdc00" }, "ResponseBody": [] }, @@ -758,8 +761,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7edb2eb35ad878646ea4db9dafcc46dc", "x-ms-return-client-request-id": "true" }, @@ -768,17 +771,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:47 GMT", + "Date": "Wed, 16 Jun 2021 00:00:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "67423302-1bb8-4c52-88e0-db4f8b08c4f7", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "67423302-1bb8-4c52-88e0-db4f8b08c4f7", - "x-ms-routing-request-id": "WESTUS2:20210519T185148Z:67423302-1bb8-4c52-88e0-db4f8b08c4f7" + "x-ms-correlation-request-id": "19acef1b-61b7-475a-be8a-ab523317e72a", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "19acef1b-61b7-475a-be8a-ab523317e72a", + "x-ms-routing-request-id": "WESTUS2:20210616T000054Z:19acef1b-61b7-475a-be8a-ab523317e72a" }, "ResponseBody": [] }, @@ -787,8 +790,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94e3a12f8cc45f390ff0415b1a5b80f4", "x-ms-return-client-request-id": "true" }, @@ -797,17 +800,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:49 GMT", + "Date": "Wed, 16 Jun 2021 00:00:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1b93ee15-d17c-4df3-82f2-2161218ca68c", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "1b93ee15-d17c-4df3-82f2-2161218ca68c", - "x-ms-routing-request-id": "WESTUS2:20210519T185149Z:1b93ee15-d17c-4df3-82f2-2161218ca68c" + "x-ms-correlation-request-id": "c45e52ca-d889-4a5d-a022-2cba6075a576", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "c45e52ca-d889-4a5d-a022-2cba6075a576", + "x-ms-routing-request-id": "WESTUS2:20210616T000055Z:c45e52ca-d889-4a5d-a022-2cba6075a576" }, "ResponseBody": [] }, @@ -816,8 +819,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88484ed61620b7075b924deb06aea0df", "x-ms-return-client-request-id": "true" }, @@ -826,17 +829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:50 GMT", + "Date": "Wed, 16 Jun 2021 00:00:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "591541a6-e3b8-41a8-94c9-df56e221cef4", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "591541a6-e3b8-41a8-94c9-df56e221cef4", - "x-ms-routing-request-id": "WESTUS2:20210519T185150Z:591541a6-e3b8-41a8-94c9-df56e221cef4" + "x-ms-correlation-request-id": "a8f88e29-3009-4ae1-ad76-0999bb172602", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "a8f88e29-3009-4ae1-ad76-0999bb172602", + "x-ms-routing-request-id": "WESTUS2:20210616T000056Z:a8f88e29-3009-4ae1-ad76-0999bb172602" }, "ResponseBody": [] }, @@ -845,8 +848,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d867f6c9aa1264cf47b6fe818085e12", "x-ms-return-client-request-id": "true" }, @@ -855,17 +858,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:51 GMT", + "Date": "Wed, 16 Jun 2021 00:00:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6", - "x-ms-routing-request-id": "WESTUS2:20210519T185151Z:6be80b93-5cfd-42b9-a0c9-2f9fc96b73b6" + "x-ms-correlation-request-id": "13d4d39c-4a3a-4d73-a5ca-fb646d77ecd6", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "13d4d39c-4a3a-4d73-a5ca-fb646d77ecd6", + "x-ms-routing-request-id": "WESTUS2:20210616T000057Z:13d4d39c-4a3a-4d73-a5ca-fb646d77ecd6" }, "ResponseBody": [] }, @@ -874,8 +877,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60c7e624bd8319bc9a2b39313f4d5961", "x-ms-return-client-request-id": "true" }, @@ -884,17 +887,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:52 GMT", + "Date": "Wed, 16 Jun 2021 00:00:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f3b871c0-2bf7-4ea2-8691-f372e0be366d", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "f3b871c0-2bf7-4ea2-8691-f372e0be366d", - "x-ms-routing-request-id": "WESTUS2:20210519T185152Z:f3b871c0-2bf7-4ea2-8691-f372e0be366d" + "x-ms-correlation-request-id": "f0ff4965-b47a-414d-8f20-321dce2e6d41", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "f0ff4965-b47a-414d-8f20-321dce2e6d41", + "x-ms-routing-request-id": "WESTUS2:20210616T000058Z:f0ff4965-b47a-414d-8f20-321dce2e6d41" }, "ResponseBody": [] }, @@ -903,8 +906,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9aee614f22d53b53022294a4a71f9e52", "x-ms-return-client-request-id": "true" }, @@ -913,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:53 GMT", + "Date": "Wed, 16 Jun 2021 00:00:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c75eda05-351f-48d7-8c49-533ee3342f2b", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "c75eda05-351f-48d7-8c49-533ee3342f2b", - "x-ms-routing-request-id": "WESTUS2:20210519T185153Z:c75eda05-351f-48d7-8c49-533ee3342f2b" + "x-ms-correlation-request-id": "9d612f08-2402-4e7b-aa51-299733f5519a", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "9d612f08-2402-4e7b-aa51-299733f5519a", + "x-ms-routing-request-id": "WESTUS2:20210616T000059Z:9d612f08-2402-4e7b-aa51-299733f5519a" }, "ResponseBody": [] }, @@ -932,8 +935,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1fc73a3440e6ae5cc36dc375611ae7a6", "x-ms-return-client-request-id": "true" }, @@ -942,17 +945,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:54 GMT", + "Date": "Wed, 16 Jun 2021 00:01:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4f4073f9-cbce-4cb8-9753-06772763dc87", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "4f4073f9-cbce-4cb8-9753-06772763dc87", - "x-ms-routing-request-id": "WESTUS2:20210519T185154Z:4f4073f9-cbce-4cb8-9753-06772763dc87" + "x-ms-correlation-request-id": "7215d6e0-1b80-4e0b-b16d-abb6d7744c1d", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "7215d6e0-1b80-4e0b-b16d-abb6d7744c1d", + "x-ms-routing-request-id": "WESTUS2:20210616T000100Z:7215d6e0-1b80-4e0b-b16d-abb6d7744c1d" }, "ResponseBody": [] }, @@ -961,8 +964,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7980d21c31a013d938b5d612918717b", "x-ms-return-client-request-id": "true" }, @@ -971,17 +974,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:55 GMT", + "Date": "Wed, 16 Jun 2021 00:01:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "af73f043-a508-40be-b205-17070986c094", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "af73f043-a508-40be-b205-17070986c094", - "x-ms-routing-request-id": "WESTUS2:20210519T185155Z:af73f043-a508-40be-b205-17070986c094" + "x-ms-correlation-request-id": "09e2851a-d6f6-4bc9-89fa-0ad3e4779409", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "09e2851a-d6f6-4bc9-89fa-0ad3e4779409", + "x-ms-routing-request-id": "WESTUS2:20210616T000101Z:09e2851a-d6f6-4bc9-89fa-0ad3e4779409" }, "ResponseBody": [] }, @@ -990,54 +993,25 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-f1f3619df697cd47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f16e7f07132b4343999325e5c2bc4edc-119eaef86d03da42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04fde68d3a860f7a053fd7685eded9e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "377395da-bfe6-41ef-bfbe-2d630e4b840c", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "377395da-bfe6-41ef-bfbe-2d630e4b840c", - "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:377395da-bfe6-41ef-bfbe-2d630e4b840c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkczMDg3LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e6105a26612e9a4c8ce677b3fb67df83-a5dfe60c7a26944f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9982ed3ae7867137fdc58b5ae2fb85ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Date": "Wed, 16 Jun 2021 00:01:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3", - "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:ceb01ecc-03cf-45ab-ab82-e6bd670a9dd3" + "x-ms-correlation-request-id": "294dd0ed-bde2-4d6a-8d8e-de064873f1e6", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "294dd0ed-bde2-4d6a-8d8e-de064873f1e6", + "x-ms-routing-request-id": "WESTUS2:20210616T000102Z:294dd0ed-bde2-4d6a-8d8e-de064873f1e6" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json index 55ab5f7fc774..50b761a0d592 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get().json @@ -6,7 +6,8 @@ "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.19043 )", + "traceparent": "00-dd370d312090d3408fc035f47c1c6a86-07af0f738ef00b41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d21cfcfd5a52d3a95003cf7be4ebc0b7", "x-ms-return-client-request-id": "true" }, @@ -14,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:56 GMT", + "Date": "Wed, 16 Jun 2021 00:01:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8738ea86-73f7-4535-9393-b75cc3c05f7d", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "8738ea86-73f7-4535-9393-b75cc3c05f7d", - "x-ms-routing-request-id": "WESTUS2:20210519T185156Z:8738ea86-73f7-4535-9393-b75cc3c05f7d" + "x-ms-correlation-request-id": "25c0db87-df28-4e90-adae-af3d0bd5652e", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "25c0db87-df28-4e90-adae-af3d0bd5652e", + "x-ms-routing-request-id": "WESTUS2:20210616T000104Z:25c0db87-df28-4e90-adae-af3d0bd5652e" }, "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", @@ -49,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ab6802f90fe2604c8c07e6cde131e76d-589b17f69389f041-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-287af091222ce045bb4a4f71ad54569d-a771e480f4dfae4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "667c3f9e9364ea17e5e46067f39e54b4", "x-ms-return-client-request-id": "true" }, @@ -63,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Date": "Wed, 16 Jun 2021 00:01:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ba59709-abbb-4074-ab9a-44f334775967", + "x-ms-correlation-request-id": "134b8f04-c92c-4446-9670-51d6ba5ce9be", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "2ba59709-abbb-4074-ab9a-44f334775967", - "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:2ba59709-abbb-4074-ab9a-44f334775967" + "x-ms-request-id": "134b8f04-c92c-4446-9670-51d6ba5ce9be", + "x-ms-routing-request-id": "WESTUS2:20210616T000105Z:134b8f04-c92c-4446-9670-51d6ba5ce9be" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1772", @@ -90,7 +95,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9791f785a4d33c76463a66d970cd44a2", "x-ms-return-client-request-id": "true" }, @@ -100,15 +105,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Date": "Wed, 16 Jun 2021 00:01:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7213556b-3a11-44b3-927b-251a212b774d", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "7213556b-3a11-44b3-927b-251a212b774d", - "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:7213556b-3a11-44b3-927b-251a212b774d" + "x-ms-correlation-request-id": "7a3a693d-34ef-484f-b322-b625cb5fbbcb", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7a3a693d-34ef-484f-b322-b625cb5fbbcb", + "x-ms-routing-request-id": "WESTUS2:20210616T000105Z:7a3a693d-34ef-484f-b322-b625cb5fbbcb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1772", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json index ef08a5d8b316..f6c9225a2ab7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Get()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-020a47d6f8392142b94a30210bcc16c3-39c9b5aef2f7d944-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59b7aae8604ff395a6f45701af8fb704", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Date": "Wed, 16 Jun 2021 00:01:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f217c0f-615f-424d-8d53-8cf286892a2b", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0f217c0f-615f-424d-8d53-8cf286892a2b", - "x-ms-routing-request-id": "WESTUS2:20210519T185157Z:0f217c0f-615f-424d-8d53-8cf286892a2b" + "x-ms-correlation-request-id": "3ee56ef5-fdbb-463c-b393-8b3925f94336", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "3ee56ef5-fdbb-463c-b393-8b3925f94336", + "x-ms-routing-request-id": "WESTUS2:20210616T000102Z:3ee56ef5-fdbb-463c-b393-8b3925f94336" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b7b601df5a312a489b17afdfa8119c54-d61d7d73f5219248-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-bb2f3fde8788ca46ac04322ca22d96f3-9a94444d352d2e41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "071a7ec67987f24b062ad73bf6781c92", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:58 GMT", + "Date": "Wed, 16 Jun 2021 00:01:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "761ef06c-428d-4062-bb4a-c40af3e9a367", + "x-ms-correlation-request-id": "76507017-4c2f-40a4-82c9-26e8607d3103", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "761ef06c-428d-4062-bb4a-c40af3e9a367", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:761ef06c-428d-4062-bb4a-c40af3e9a367" + "x-ms-request-id": "76507017-4c2f-40a4-82c9-26e8607d3103", + "x-ms-routing-request-id": "WESTUS2:20210616T000103Z:76507017-4c2f-40a4-82c9-26e8607d3103" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", @@ -91,7 +94,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a56179c782b01065ad5db32879bec64", "x-ms-return-client-request-id": "true" }, @@ -101,15 +104,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:57 GMT", + "Date": "Wed, 16 Jun 2021 00:01:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:bc513c8e-5bf0-4550-9aa9-a2cbdf4892b4" + "x-ms-correlation-request-id": "35a960eb-2795-4a33-842e-111de9c74a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "35a960eb-2795-4a33-842e-111de9c74a6b", + "x-ms-routing-request-id": "WESTUS2:20210616T000103Z:35a960eb-2795-4a33-842e-111de9c74a6b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3094", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json index 12bbac6295e8..21ba6c8ce07c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations().json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a681b21b23f6b14bb34b3d399af1d926-4a4d01886eeafc46-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa51013d54407fd4230a57392c708ca6", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:58 GMT", + "Date": "Wed, 16 Jun 2021 00:01:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f592290a-129f-44f3-bd63-109e4f2e6a01", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "f592290a-129f-44f3-bd63-109e4f2e6a01", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:f592290a-129f-44f3-bd63-109e4f2e6a01" + "x-ms-correlation-request-id": "44f7c27d-95da-4b95-beec-e1ff77ba967e", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "44f7c27d-95da-4b95-beec-e1ff77ba967e", + "x-ms-routing-request-id": "WESTUS2:20210616T000106Z:44f7c27d-95da-4b95-beec-e1ff77ba967e" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5d6aae91dd56e04886fb32c04585b18b-c0e15046efa9514f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5368264b331c0d40a5e7038698b80ebd-77e173e4ba070d4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7042e52bd2a4bb1f0cc1dc04b133791", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:58 GMT", + "Date": "Wed, 16 Jun 2021 00:01:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5ed3bda-6148-48f7-96a8-c6f6542182ad", + "x-ms-correlation-request-id": "6b4c450a-a430-42cd-9b78-4afd27e7cc3b", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "d5ed3bda-6148-48f7-96a8-c6f6542182ad", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:d5ed3bda-6148-48f7-96a8-c6f6542182ad" + "x-ms-request-id": "6b4c450a-a430-42cd-9b78-4afd27e7cc3b", + "x-ms-routing-request-id": "WESTUS2:20210616T000107Z:6b4c450a-a430-42cd-9b78-4afd27e7cc3b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1226", @@ -99,17 +102,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1310422", + "Content-Length": "1339892", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:01 GMT", + "Date": "Wed, 16 Jun 2021 00:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76582237-cc19-47e9-9672-525c03ddfd80", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "76582237-cc19-47e9-9672-525c03ddfd80", - "x-ms-routing-request-id": "WESTUS2:20210519T185201Z:76582237-cc19-47e9-9672-525c03ddfd80" + "x-ms-correlation-request-id": "58c41bf2-24bb-4d44-ac1e-4bfd17152899", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "58c41bf2-24bb-4d44-ac1e-4bfd17152899", + "x-ms-routing-request-id": "WESTUS2:20210616T000109Z:58c41bf2-24bb-4d44-ac1e-4bfd17152899" }, "ResponseBody": { "value": [ @@ -730,7 +733,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ "2015-04-01", @@ -865,9 +869,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2017-05-01-preview", "2016-09-01", "2015-07-01" @@ -917,9 +923,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2017-05-01-preview" ], "capabilities": "SupportsExtension" @@ -961,7 +969,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ "2017-02-01" @@ -1376,7 +1385,9 @@ "Australia Central", "France South", "South India", - "West Central US" + "West Central US", + "West US 3", + "Korea South" ], "apiVersions": [ "2021-03-08", @@ -1430,7 +1441,9 @@ "Australia Central", "France South", "South India", - "West Central US" + "West Central US", + "West US 3", + "Korea South" ], "apiVersions": [ "2020-11-20", @@ -1613,9 +1626,18 @@ "Korea Central", "France Central", "South Africa North", - "Switzerland North" + "Switzerland North", + "Australia Central 2", + "Brazil Southeast", + "France South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West" ], "apiVersions": [ + "2021-04-01", "2019-11-01-preview" ], "defaultApiVersion": "2019-11-01-preview", @@ -1648,9 +1670,21 @@ "Korea Central", "France Central", "South Africa North", - "Switzerland North" + "Switzerland North", + "Brazil South", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West" ], "apiVersions": [ + "2021-04-01", "2019-11-01-preview" ], "defaultApiVersion": "2019-11-01-preview", @@ -1857,6 +1891,10 @@ { "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42", "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc" + }, + { + "applicationId": "a3747411-ce7c-4888-9ddc-3a230786ca19", + "roleDefinitionId": "b29ead14-d6d9-4957-bdf1-494b07fe2e87" } ], "resourceTypes": [ @@ -1897,7 +1935,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -1945,7 +1984,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview" @@ -1989,7 +2029,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview" @@ -2033,7 +2074,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2078,7 +2120,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2123,7 +2166,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2168,7 +2212,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2213,7 +2258,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2258,7 +2304,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2303,7 +2350,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2348,7 +2396,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2395,7 +2444,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2440,7 +2490,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2485,7 +2536,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2530,7 +2582,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2576,7 +2629,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2622,7 +2676,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2668,7 +2723,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview" @@ -2713,7 +2769,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview" @@ -2789,7 +2846,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2835,7 +2893,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2881,7 +2940,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2928,7 +2988,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2974,7 +3035,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3018,7 +3080,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3062,7 +3125,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3106,7 +3170,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3150,7 +3215,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3194,7 +3260,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3238,7 +3305,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3282,7 +3350,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3326,7 +3395,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3370,7 +3440,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3417,7 +3488,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3464,7 +3536,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3511,7 +3584,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3558,7 +3632,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3605,7 +3680,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3649,7 +3725,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3693,7 +3770,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3741,7 +3819,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-05-01", @@ -3799,7 +3878,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3847,7 +3927,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3895,7 +3976,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3942,7 +4024,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2017-10-01" @@ -3986,7 +4069,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2017-10-01" @@ -4043,7 +4127,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-05-01", @@ -4088,7 +4173,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4138,7 +4224,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4187,7 +4274,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4333,9 +4421,14 @@ "UAE North", "UAE Central", "Norway East", - "Norway West" + "Norway West", + "West US 3", + "Jio India Central", + "Jio India West", + "Australia Central 2" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2021-02-01", "2020-12-01", @@ -4449,6 +4542,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4498,6 +4595,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4560,6 +4661,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4570,6 +4675,7 @@ "Norway West" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2021-02-01", "2020-12-01", @@ -4623,6 +4729,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4633,6 +4743,7 @@ "Norway West" ], "apiVersions": [ + "2021-05-01", "2021-03-01" ], "capabilities": "None" @@ -4765,7 +4876,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4820,7 +4932,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -4865,7 +4978,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4920,7 +5034,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4970,7 +5085,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5020,7 +5136,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5071,7 +5188,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5122,7 +5240,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5173,7 +5292,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5224,7 +5344,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5275,7 +5396,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5326,7 +5448,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5375,7 +5498,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5424,7 +5548,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5473,7 +5598,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5522,7 +5648,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5571,7 +5698,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5620,7 +5748,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5669,7 +5798,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5720,7 +5850,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5771,7 +5902,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5824,7 +5956,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5878,7 +6011,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5932,7 +6066,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6072,7 +6207,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6117,7 +6253,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6162,7 +6299,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6213,7 +6351,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6258,7 +6397,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6306,7 +6446,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6354,7 +6495,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6399,7 +6541,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6444,7 +6587,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2015-05-01-preview", @@ -6489,7 +6633,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6538,7 +6683,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6583,7 +6729,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6628,7 +6775,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6678,7 +6826,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6727,7 +6876,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6772,7 +6922,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6822,7 +6973,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6873,7 +7025,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview", @@ -6919,7 +7072,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -6962,7 +7116,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -7005,7 +7160,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -7048,7 +7204,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7093,7 +7250,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7138,7 +7296,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7183,7 +7342,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7234,7 +7394,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7285,7 +7446,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7336,7 +7498,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7387,7 +7550,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7437,7 +7601,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7483,7 +7648,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7533,7 +7699,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7583,7 +7750,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7633,7 +7801,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7683,7 +7852,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7729,7 +7899,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7775,7 +7946,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7827,7 +7999,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7879,7 +8052,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7960,7 +8134,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8007,7 +8182,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8057,7 +8233,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8107,7 +8284,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8157,7 +8335,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8207,7 +8386,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8257,7 +8437,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8307,7 +8488,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -8352,7 +8534,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8402,7 +8585,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8452,7 +8636,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8502,7 +8687,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8553,7 +8739,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8604,7 +8791,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8655,7 +8843,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8706,7 +8895,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8757,7 +8947,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8809,7 +9000,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8860,7 +9052,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8912,7 +9105,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8964,7 +9158,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9016,7 +9211,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9068,7 +9264,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9118,7 +9315,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9163,7 +9361,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9208,7 +9407,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9253,7 +9453,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9298,7 +9499,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9343,7 +9545,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9388,7 +9591,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9433,7 +9637,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9478,7 +9683,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9532,7 +9738,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9583,7 +9790,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9637,7 +9845,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9682,7 +9891,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9733,7 +9943,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9784,7 +9995,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9835,7 +10047,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9882,7 +10095,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9932,7 +10146,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9980,7 +10195,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10030,7 +10246,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10078,7 +10295,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10129,7 +10347,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10176,7 +10395,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10225,7 +10445,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10274,7 +10495,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10324,7 +10546,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10375,7 +10598,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10426,7 +10650,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10477,7 +10702,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10525,7 +10751,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10572,7 +10799,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10619,7 +10847,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10667,7 +10896,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10715,7 +10945,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10800,7 +11031,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10850,7 +11082,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10923,7 +11156,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -10968,7 +11202,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11018,7 +11253,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11068,7 +11304,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11116,7 +11353,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11165,7 +11403,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11212,7 +11451,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11259,7 +11499,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11306,7 +11547,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11353,7 +11595,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11401,7 +11644,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11449,7 +11693,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11497,7 +11742,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11545,7 +11791,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11593,7 +11840,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11641,7 +11889,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11691,7 +11940,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11741,7 +11991,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11791,7 +12042,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11841,7 +12093,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11889,7 +12142,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11937,7 +12191,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11987,7 +12242,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12036,7 +12292,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12085,7 +12342,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12134,7 +12392,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12184,7 +12443,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12234,7 +12494,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12284,7 +12545,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12335,7 +12597,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12386,7 +12649,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12437,7 +12701,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12488,7 +12753,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12539,7 +12805,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12589,7 +12856,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12639,7 +12907,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12690,7 +12959,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12741,7 +13011,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12792,7 +13063,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12843,7 +13115,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12893,7 +13166,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12943,7 +13217,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12993,7 +13268,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13043,7 +13319,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13093,7 +13370,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13143,7 +13421,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13192,7 +13471,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13241,7 +13521,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13291,7 +13572,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13341,7 +13623,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13390,7 +13673,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13439,7 +13723,58 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13447,13 +13782,12 @@ "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview" + "2018-06-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13488,7 +13822,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13501,7 +13836,7 @@ "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "resourceType": "locations/privateEndpointConnectionOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13536,7 +13871,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13549,7 +13885,7 @@ "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionOperationResults", + "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13584,20 +13920,16 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview", - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview" + "2021-02-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "resourceType": "locations/outboundFirewallRulesOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13632,7 +13964,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -13640,7 +13973,7 @@ "capabilities": "None" }, { - "resourceType": "locations/outboundFirewallRulesOperationResults", + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13675,15 +14008,21 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview" + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "resourceType": "locations/notifyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13718,7 +14057,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13726,12 +14066,15 @@ "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview" + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/notifyAzureAsyncOperation", + "resourceType": "locations/serverTrustGroups", "locations": [ "Australia Central", "Australia East", @@ -13766,23 +14109,19 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" + "2020-02-02-preview" ], "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroups", + "resourceType": "locations/serverTrustGroupOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13817,7 +14156,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13828,7 +14168,7 @@ "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroupOperationResults", + "resourceType": "locations/serverTrustGroupAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13863,7 +14203,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13874,7 +14215,7 @@ "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroupAzureAsyncOperation", + "resourceType": "locations/managedDatabaseMoveOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13909,13 +14250,55 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview", - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview" + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedDatabaseMoveAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "apiVersions": [ + "2021-02-01-preview" ], "capabilities": "None" }, @@ -13955,7 +14338,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -15603,16 +15987,23 @@ "resourceType": "flexibleServers", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Korea Central", "Japan East", "North Europe", + "Norway East", + "South Africa North", "Southeast Asia", + "Switzerland North", + "UAE North", "UK South", + "West US", "West US 2", "West Europe" ], @@ -15711,6 +16102,10 @@ "3" ] }, + { + "location": "South Africa North", + "zones": [] + }, { "location": "Canada Central", "zones": [ @@ -15726,6 +16121,14 @@ "1", "3" ] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -15782,11 +16185,13 @@ "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -15814,11 +16219,13 @@ "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -16250,12 +16657,14 @@ "Germany West Central", "Japan West", "Japan East", + "Korea Central", "North Central US", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -17268,6 +17677,8 @@ { "resourceType": "workspaces", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17295,7 +17706,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "": "2019-01-23-preview" + "default": "2019-01-23-preview", + "operations": "2019-01-23-preview" }, "logs": { "mdsInfo": [ @@ -17315,6 +17727,8 @@ { "resourceType": "applicationgroups", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17342,6 +17756,8 @@ { "resourceType": "applicationgroups/applications", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17369,6 +17785,8 @@ { "resourceType": "applicationgroups/desktops", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17396,6 +17814,8 @@ { "resourceType": "applicationgroups/startmenuitems", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17423,6 +17843,8 @@ { "resourceType": "hostpools", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17450,7 +17872,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "": "2019-01-23-preview" + "default": "2019-01-23-preview", + "operations": "2019-01-23-preview" }, "logs": { "mdsInfo": [ @@ -17472,6 +17895,8 @@ { "resourceType": "hostpools/msixpackages", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17499,6 +17924,8 @@ { "resourceType": "hostpools/sessionhosts", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17526,6 +17953,8 @@ { "resourceType": "hostpools/sessionhosts/usersessions", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17553,6 +17982,8 @@ { "resourceType": "hostpools/usersessions", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17578,8 +18009,10 @@ "capabilities": "None" }, { - "resourceType": "scalingPlans", + "resourceType": "scalingplans", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17622,7 +18055,7 @@ } ], "metadata": { - "build": "1.0.3164.0", + "build": "", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17673,6 +18106,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17718,6 +18152,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17728,6 +18163,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17749,6 +18185,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17759,6 +18196,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17941,7 +18379,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2018-01-01-preview", @@ -18088,6 +18527,127 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", + "namespace": "Microsoft.Communication", + "authorizations": [ + { + "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", + "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare", "namespace": "Microsoft.DataShare", @@ -19009,7 +19569,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -19265,7 +19826,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -19337,7 +19899,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -20896,7 +21459,11 @@ }, { "location": "West US 3", - "zones": [] + "zones": [ + "2", + "1", + "3" + ] }, { "location": "Norway East", @@ -21240,7 +21807,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21324,7 +21892,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21462,7 +22031,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21486,7 +22056,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21510,7 +22081,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21534,7 +22106,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21558,7 +22131,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21582,7 +22156,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21606,7 +22181,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21631,7 +22207,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21813,6 +22390,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -21935,6 +22513,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22039,6 +22618,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22197,9 +22777,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22257,6 +22849,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22456,9 +23049,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22533,6 +23138,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22677,9 +23283,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22752,6 +23370,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22875,6 +23494,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22924,6 +23544,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23001,6 +23622,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23059,6 +23681,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23192,6 +23815,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23325,6 +23949,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23410,6 +24035,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23483,6 +24109,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23552,6 +24179,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23656,6 +24284,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23817,9 +24446,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -23860,6 +24501,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23924,6 +24566,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24014,6 +24657,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24105,6 +24749,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24180,6 +24825,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24271,6 +24917,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24410,6 +25057,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24514,6 +25162,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24638,6 +25287,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24823,9 +25473,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -24897,6 +25559,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25027,6 +25690,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25130,6 +25794,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25233,6 +25898,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25322,6 +25988,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25371,6 +26038,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25474,6 +26142,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25551,6 +26220,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25619,6 +26289,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25679,6 +26350,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25739,6 +26411,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25795,6 +26468,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25854,6 +26528,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25913,6 +26588,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25964,6 +26640,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26015,6 +26692,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26083,6 +26761,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26129,6 +26808,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26175,6 +26855,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26243,6 +26924,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26311,6 +26993,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26379,6 +27062,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26447,6 +27131,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27151,6 +27836,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27275,6 +27961,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27364,6 +28051,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27442,6 +28130,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27518,6 +28207,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27580,6 +28270,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27642,6 +28333,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27704,6 +28396,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27794,6 +28487,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27873,6 +28567,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27948,6 +28643,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28021,6 +28717,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28078,6 +28775,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28153,6 +28851,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28261,6 +28960,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28358,6 +29058,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28666,6 +29367,7 @@ "South Africa North", "UAE North", "Switzerland North", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28719,6 +29421,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28883,9 +29586,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -28961,6 +29676,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29025,6 +29741,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29090,6 +29807,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29172,6 +29890,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29223,6 +29942,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29300,6 +30020,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29639,6 +30360,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29704,6 +30426,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29960,6 +30683,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -30188,6 +30912,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30195,6 +30920,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30273,6 +30999,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30280,6 +31007,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30356,6 +31084,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30363,6 +31092,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30441,6 +31171,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30448,6 +31179,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30498,6 +31230,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -30533,6 +31266,7 @@ "Japan East" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01" @@ -30578,6 +31312,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30585,6 +31320,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30663,6 +31399,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30670,6 +31407,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30748,6 +31486,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30755,6 +31494,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30771,6 +31511,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -30806,6 +31547,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30850,6 +31592,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30857,6 +31600,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30873,6 +31617,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -30908,6 +31653,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30923,6 +31669,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30962,6 +31709,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30997,6 +31745,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31061,6 +31810,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -31068,6 +31818,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31143,6 +31894,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31183,6 +31935,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "East US", @@ -31218,6 +31971,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31261,6 +32015,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "East US", @@ -31296,6 +32051,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31339,6 +32095,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31374,6 +32131,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31421,6 +32179,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31456,6 +32215,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31503,6 +32263,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31538,6 +32299,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31585,6 +32347,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31620,6 +32383,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31695,6 +32459,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -31702,6 +32467,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31752,6 +32518,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31787,6 +32554,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31838,6 +32606,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -31873,6 +32642,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31959,6 +32729,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -31994,6 +32765,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32130,6 +32902,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -32165,6 +32938,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32237,6 +33011,7 @@ "resourceType": "runtimes", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32279,6 +33054,7 @@ "resourceType": "recommendations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32322,6 +33098,7 @@ "resourceType": "resourceHealthMetadata", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32365,6 +33142,7 @@ "resourceType": "georegions", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32415,6 +33193,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32450,6 +33229,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32494,6 +33274,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Central US", + "West US 3", "South Africa North", "West US 2", "East US 2", @@ -32530,6 +33311,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32603,6 +33385,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32638,6 +33421,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32711,6 +33495,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32746,6 +33531,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32812,9 +33598,12 @@ "resourceType": "kubeEnvironments", "locations": [ "North Central US (Stage)", - "West Central US" + "West Central US", + "East US", + "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32894,6 +33683,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -32901,6 +33691,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32951,6 +33742,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32986,6 +33778,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33036,6 +33829,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -33071,6 +33865,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33115,6 +33910,7 @@ "resourceType": "ishostingenvironmentnameavailable", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33165,6 +33961,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -33200,6 +33997,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33866,6 +34664,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -33873,6 +34672,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33952,6 +34752,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -33959,6 +34760,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34038,6 +34840,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -34045,6 +34848,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34095,6 +34899,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34132,6 +34937,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34166,6 +34972,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34203,6 +35010,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34241,6 +35049,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34278,6 +35087,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34320,6 +35130,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "UK South", @@ -34350,6 +35161,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34387,6 +35199,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34424,6 +35237,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34458,6 +35272,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34495,6 +35310,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34517,6 +35333,19 @@ "2014-04-01" ], "capabilities": "None" + }, + { + "resourceType": "workerApps", + "locations": [ + "North Central US (Stage)" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-12-01" + ], + "defaultApiVersion": "2021-02-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "metadata": { @@ -34643,9 +35472,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -34716,9 +35547,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -34884,6 +35717,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -34931,9 +35772,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35004,9 +35847,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35173,6 +36018,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -35228,9 +36081,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35302,9 +36157,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35376,9 +36233,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35449,9 +36308,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35524,9 +36385,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35599,9 +36462,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35630,6 +36495,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35685,9 +36551,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35758,9 +36626,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35830,9 +36700,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35893,9 +36765,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35965,9 +36839,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36030,9 +36906,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36095,9 +36973,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -36168,9 +37048,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36233,7 +37115,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -36276,9 +37159,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36330,9 +37215,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36383,9 +37270,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36435,9 +37324,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36482,6 +37373,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -36525,9 +37417,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -36571,9 +37465,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -36617,9 +37513,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -36803,9 +37701,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36851,9 +37751,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36899,9 +37801,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36947,9 +37851,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36995,9 +37901,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -37043,9 +37951,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37203,6 +38113,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -37250,9 +38168,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37315,9 +38235,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37379,9 +38301,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37433,9 +38357,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37480,7 +38406,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37620,6 +38547,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -37675,7 +38610,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37728,7 +38664,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37773,7 +38710,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37817,7 +38755,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -37861,7 +38800,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -37905,7 +38845,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37949,7 +38890,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37993,7 +38935,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -38037,9 +38980,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38103,9 +39048,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38155,9 +39102,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38300,6 +39249,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -38347,9 +39304,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38492,6 +39451,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -38553,6 +39520,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -38598,6 +39566,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -38643,6 +39612,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -39253,6 +40223,7 @@ "South India" ], "apiVersions": [ + "2020-10-01", "2020-08-01", "2020-03-01-preview" ], @@ -39448,6 +40419,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2020-07-01-preview", "2020-01-01", "2017-04-19", "2017-03-31", @@ -39535,6 +40507,16 @@ ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "migrateFromSmartDetection", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "actionRules", "locations": [ @@ -40361,7 +41343,7 @@ "apiVersions": [ "2020-05-01" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "operationStatus", @@ -42444,7 +43426,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-02-01", @@ -42531,6 +43514,7 @@ "Switzerland North", "Norway East", "Jio India West", + "West US 3", "Germany West Central" ], "apiVersions": [ @@ -42585,7 +43569,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -42644,6 +43629,7 @@ "Korea Central", "Korea South", "France Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -42689,7 +43675,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2017-04-01", @@ -42779,6 +43766,7 @@ "Germany West Central", "Norway East", "Jio India West", + "West US 3", "West US", "Central US", "South Central US", @@ -42834,6 +43822,7 @@ "West Central US", "Germany West Central", "Norway East", + "West US 3", "South India", "Central India", "West India", @@ -42886,6 +43875,7 @@ "Korea Central", "Korea South", "France Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -43047,7 +44037,8 @@ "Jio India West", "Australia Central", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-11-15", @@ -43177,7 +44168,8 @@ "Jio India West", "Australia Central", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -43269,6 +44261,7 @@ "Jio India West", "Australia Central", "Germany West Central", + "West US 3", "Norway East" ], "apiVersions": [ @@ -43402,7 +44395,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -43481,7 +44475,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2014-04-01" @@ -43526,7 +44521,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2014-04-01" @@ -43579,6 +44575,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -43632,6 +44629,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -44412,9 +45410,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44494,6 +45496,9 @@ "resourceType": "databaseAccountNames", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44552,6 +45557,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44610,6 +45618,9 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44668,6 +45679,9 @@ "resourceType": "operationsStatus", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44758,9 +45772,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44851,9 +45869,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44912,6 +45934,9 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44968,9 +45993,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -45027,9 +46056,12 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview", "2020-06-01-preview" @@ -45072,9 +46104,12 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview", "2020-06-01-preview" @@ -45117,9 +46152,11 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview" ], @@ -45162,6 +46199,9 @@ { "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7", "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3" + }, + { + "applicationId": "823c0a78-5de0-4445-a7f5-c2f42d7dc89b" } ], "resourceTypes": [ @@ -46015,7 +47055,7 @@ "2020-10-15-preview", "2020-04-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "partnerTopics/eventSubscriptions", @@ -47090,7 +48130,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-01-01-preview", @@ -47144,7 +48185,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2018-01-01-preview" @@ -47155,6 +48197,8 @@ "resourceType": "namespaces/authorizationrules", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47171,6 +48215,7 @@ "resourceType": "namespaces/networkrulesets", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01" ], @@ -47186,6 +48231,7 @@ "resourceType": "namespaces/privateEndpointConnections", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview" ], "capabilities": "None" @@ -47194,6 +48240,8 @@ "resourceType": "namespaces/eventhubs", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47210,6 +48258,8 @@ "resourceType": "namespaces/eventhubs/authorizationrules", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47226,6 +48276,8 @@ "resourceType": "namespaces/eventhubs/consumergroups", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47257,6 +48309,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47289,6 +48343,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47305,6 +48361,8 @@ "resourceType": "namespaces/disasterrecoveryconfigs", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01" ], "apiProfiles": [ @@ -47319,6 +48377,8 @@ "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -48290,6 +49350,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48354,6 +49415,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48418,6 +49480,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48533,6 +49596,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48608,6 +49672,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48663,6 +49728,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48712,6 +49778,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48767,6 +49834,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48890,6 +49958,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48936,6 +50005,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -49032,7 +50102,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2021-05-01", @@ -49046,6 +50117,25 @@ "defaultApiVersion": "2020-05-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "videoAnalyzers", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "mediaservices/assets", "locations": [ @@ -49085,7 +50175,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49135,7 +50226,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49185,7 +50277,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49235,7 +50328,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49285,7 +50379,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2018-02-05" @@ -49332,7 +50427,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49382,7 +50478,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49432,7 +50529,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49483,7 +50581,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49534,7 +50633,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49585,7 +50685,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49636,7 +50737,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49687,7 +50789,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49738,7 +50841,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49786,7 +50890,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49795,6 +50900,63 @@ "defaultApiVersion": "2018-07-01", "capabilities": "None" }, + { + "resourceType": "videoAnalyzers/accessPolicies", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "videoAnalyzers/edgeModules", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "videoAnalyzers/videos", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], @@ -49802,7 +50964,6 @@ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -49831,7 +50992,6 @@ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -49879,13 +51039,13 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -50366,6 +51526,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50414,6 +51575,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50462,6 +51624,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50635,6 +51798,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -50697,6 +51868,7 @@ "UAE North", "Switzerland North", "Germany West Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50775,6 +51947,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50845,6 +52018,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50908,6 +52082,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50971,6 +52146,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51034,6 +52210,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51097,6 +52274,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51160,6 +52338,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51254,6 +52433,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51320,6 +52500,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51419,6 +52600,7 @@ "UAE North", "Switzerland North", "Germany West Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51497,6 +52679,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51552,6 +52735,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51595,6 +52779,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -52623,7 +53808,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52652,6 +53839,7 @@ "West India", "Canada Central", "Canada East", + "West Central US", "West US 2", "Korea Central", "Korea South", @@ -52667,7 +53855,8 @@ "UK West", "France Central", "France South", - "West Central US" + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52718,7 +53907,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52768,7 +53959,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52811,7 +54004,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52854,7 +54049,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52906,7 +54103,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -52949,7 +54148,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52992,7 +54193,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53043,7 +54246,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53085,7 +54290,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -53128,7 +54335,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53171,7 +54380,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -53215,7 +54426,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -53230,6 +54443,7 @@ "East US" ], "apiVersions": [ + "2021-06-01", "2019-01-01", "2017-08-01-preview" ], @@ -53319,6 +54533,14 @@ "2019-01-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "ingestionSettings", + "locations": [], + "apiVersions": [ + "2021-01-15-preview" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -53373,7 +54595,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-01-01-preview", @@ -53647,7 +54870,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2017-04-01", @@ -54079,56 +55303,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", - "namespace": "LiveArena.Broadcast", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West US", - "North Europe", - "Japan West", - "Japan East", - "East Asia", - "West Europe", - "East US", - "Southeast Asia", - "Central US" - ], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AAD", "namespace": "Microsoft.AAD", @@ -54183,12 +55357,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "SupportsTags, SupportsLocation" }, { @@ -54227,11 +55402,12 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54270,12 +55446,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54314,12 +55491,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54358,12 +55536,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" } ], @@ -55075,7 +56254,10 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + "applicationIds": [ + "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "9581bc0e-c952-4fd3-8d99-e777877718b1" + ] } }, "registrationState": "NotRegistered", @@ -55415,6 +56597,11 @@ "apiVersions": [ "2020-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -55493,6 +56680,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55524,6 +56712,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55555,6 +56744,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55586,6 +56776,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55597,6 +56788,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55608,6 +56800,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55639,6 +56832,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55670,6 +56864,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55914,6 +57109,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -55967,6 +57164,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56020,6 +57219,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56070,6 +57271,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56135,6 +57338,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56184,6 +57389,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56235,6 +57442,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56280,6 +57489,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56325,6 +57536,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56513,6 +57726,18 @@ ], "defaultApiVersion": "2020-05-01-preview", "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" } ], "metadata": { @@ -56628,88 +57853,114 @@ "East Asia" ], "apiVersions": [ - "2021-01-01-preview", - "2020-07-17-preview", - "2020-03-20" - ], - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "metrics": { - "mdsInfo": [ - { - "serviceIdentity": "Microsoft.AVS" - } - ], - "mdmInfo": [ - { - "enableRegionalMdmAccount": true, - "sourceMdmAccount": "AVSShoebox2", - "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" - } - ] - } - } - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "privateClouds/clusters", - "locations": [ - "East US", - "North Central US", - "West US", - "West Europe", - "Australia East", - "South Central US", - "Japan East", - "UK South", - "Canada Central", - "North Europe", - "Southeast Asia", - "UK West", - "East US 2", - "Central US", - "Australia Southeast", - "Canada East", - "East Asia" - ], - "apiVersions": [ - "2021-01-01-preview", + "2021-01-01-preview", + "2020-07-17-preview", + "2020-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateClouds/clusters", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/authorizations", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/hcxEnterpriseSites", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ "2020-03-20" ], "capabilities": "None" }, { - "resourceType": "privateClouds/authorizations", - "locations": [ - "East US", - "North Central US", - "West US", - "West Europe", - "Australia East", - "South Central US", - "Japan East", - "UK South", - "Canada Central", - "North Europe", - "Southeast Asia", - "UK West", - "East US 2", - "Central US", - "Australia Southeast", - "Canada East", - "East Asia" - ], - "apiVersions": [ - "2020-03-20" - ], - "capabilities": "None" - }, - { - "resourceType": "privateClouds/hcxEnterpriseSites", + "resourceType": "privateClouds/globalReachConnections", "locations": [ "East US", "North Central US", @@ -56730,12 +57981,12 @@ "East Asia" ], "apiVersions": [ - "2020-03-20" + "2020-07-17-preview" ], "capabilities": "None" }, { - "resourceType": "privateClouds/globalReachConnections", + "resourceType": "privateClouds/addons", "locations": [ "East US", "North Central US", @@ -56761,7 +58012,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/addons", + "resourceType": "privateClouds/workloadNetworks", "locations": [ "East US", "North Central US", @@ -56787,7 +58038,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks", + "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", "locations": [ "East US", "North Central US", @@ -56813,7 +58064,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", + "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", "locations": [ "East US", "North Central US", @@ -56839,7 +58090,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", + "resourceType": "privateClouds/workloadNetworks/segments", "locations": [ "East US", "North Central US", @@ -56865,7 +58116,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/segments", + "resourceType": "privateClouds/workloadNetworks/vmGroups", "locations": [ "East US", "North Central US", @@ -56891,7 +58142,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/vmGroups", + "resourceType": "privateClouds/workloadNetworks/gateways", "locations": [ "East US", "North Central US", @@ -56917,7 +58168,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/gateways", + "resourceType": "privateClouds/workloadNetworks/virtualMachines", "locations": [ "East US", "North Central US", @@ -56943,7 +58194,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/virtualMachines", + "resourceType": "privateClouds/workloadNetworks/dnsServices", "locations": [ "East US", "North Central US", @@ -56969,7 +58220,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dnsServices", + "resourceType": "privateClouds/workloadNetworks/dnsZones", "locations": [ "East US", "North Central US", @@ -56995,7 +58246,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dnsZones", + "resourceType": "privateClouds/cloudLinks", "locations": [ "East US", "North Central US", @@ -57016,7 +58267,7 @@ "East Asia" ], "apiVersions": [ - "2020-07-17-preview" + "2021-06-01" ], "capabilities": "None" } @@ -57467,8 +58718,6 @@ { "resourceType": "catalogs", "locations": [ - "East US 2 EUAP", - "Central US EUAP", "global" ], "apiVersions": [ @@ -57479,7 +58728,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "catalogs/products", @@ -57494,7 +58743,107 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -57524,6 +58873,7 @@ "Global" ], "apiVersions": [ + "2021-05-01-preview", "2020-06-01-preview", "2017-06-01" ], @@ -57617,6 +58967,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-11-01-preview", "2020-10-01" ], @@ -57628,7 +58979,7 @@ "capabilities": "None" }, { - "resourceType": "Locations/OperationStatuses", + "resourceType": "locations/operationStatuses", "locations": [ "East US", "East US 2 EUAP", @@ -57636,6 +58987,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-10-01" ], "capabilities": "None" @@ -57648,6 +59000,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-10-01" ], "metadata": { @@ -57656,6 +59009,40 @@ } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -58085,6 +59472,14 @@ ], "capabilities": "None" }, + { + "resourceType": "billingAccounts/policies", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/operationResults", "locations": [], @@ -58440,6 +59835,7 @@ "resourceType": "billingAccounts/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58450,6 +59846,7 @@ "resourceType": "billingAccounts/billingProfiles/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58547,6 +59944,7 @@ "resourceType": "billingAccounts/billingSubscriptions/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview" ], @@ -58853,6 +60251,7 @@ "resourceType": "billingAccounts/agreements", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58886,6 +60285,14 @@ ], "capabilities": "None" }, + { + "resourceType": "billingAccounts/billingProfiles/paymentMethodLinks", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/payableOverage", "locations": [], @@ -58964,6 +60371,15 @@ "2020-12-15-beta" ], "capabilities": "None" + }, + { + "resourceType": "billingAccounts/appliedReservationOrders", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-12-15-beta" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -59414,6 +60830,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "metadata": { @@ -59478,6 +60898,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59506,6 +60930,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59534,6 +60962,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59573,6 +61005,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59601,6 +61037,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -60152,6 +61592,7 @@ "resourceType": "resourceChanges", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2021-04-01", "2020-04-01-preview" ], @@ -60161,10 +61602,27 @@ "resourceType": "changes", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2021-04-01", "2020-10-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "changeSnapshots", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "computeChanges", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension" } ], "metadata": { @@ -60398,97 +61856,6 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationFree" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", - "namespace": "Microsoft.Communication", - "authorizations": [ - { - "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", - "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" - } - ], - "resourceTypes": [ - { - "resourceType": "Locations", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "CommunicationServices", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "CommunicationServices/eventGridFilters", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "registeredSubscriptions", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "None" - }, - { - "resourceType": "Locations/operationStatuses", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "CheckNameAvailability", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - } - ], - "metadata": { - "onboardedVia": "ProviderHub" - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger", "namespace": "Microsoft.ConfidentialLedger", @@ -60507,6 +61874,7 @@ "global" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "metadata": { @@ -60520,9 +61888,11 @@ "resourceType": "Locations/operationstatuses", "locations": [ "East US 2 EUAP", - "East US" + "East US", + "South Central US" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "capabilities": "None" @@ -60530,10 +61900,11 @@ { "resourceType": "Ledgers", "locations": [ - "East US 2 EUAP", - "East US" + "East US", + "South Central US" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "metadata": { @@ -60542,6 +61913,20 @@ } }, "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" } ], "metadata": { @@ -60650,20 +62035,7 @@ }, { "resourceType": "validations", - "locations": [ - "West US 2", - "West Central US", - "Australia East", - "France Central", - "Canada Central", - "East US", - "UK South", - "West Europe", - "Central US", - "East US 2", - "North Europe", - "Southeast Asia" - ], + "locations": [], "apiVersions": [ "2021-03-01-preview" ], @@ -61183,6 +62555,7 @@ "resourceType": "credits", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -61194,6 +62567,7 @@ "resourceType": "events", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -61205,6 +62579,7 @@ "resourceType": "lots", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -62456,7 +63831,13 @@ } ], "metadata": { - "microsoft.insights": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "38c77d00-5fcb-4cce-9d93-af4738258e3c", + "0bfc4568-a4ba-4c58-bd3e-5d3e76bd7fff" + ] + }, + "Microsoft.Insights": { "monitoringResourceProvider": { "version": "1.0", "apiVersions": { @@ -64559,7 +65940,12 @@ { "resourceType": "SqlMigrationServices", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -64570,7 +65956,12 @@ { "resourceType": "DatabaseMigrations", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -64581,7 +65972,12 @@ { "resourceType": "Locations/OperationTypes", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -66779,6 +68175,12 @@ } ], "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78", + "delegationAppIds": [ + "6ee392c4-d339-4083-b04d-6b7947c6cf78" + ] + }, "onboardedVia": "ProviderHub" }, "registrationState": "NotRegistered", @@ -66828,80 +68230,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevSpaces", - "namespace": "Microsoft.DevSpaces", - "resourceTypes": [ - { - "resourceType": "controllers", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "controllers/listConnectionDetails", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2020-05-01", - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationresults", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/checkContainerHostMapping", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - } - ], - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "eda7eafb-df85-4c80-a4bc-15a30dd106d5" - } - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab", "namespace": "Microsoft.DevTestLab", @@ -67491,12 +68819,50 @@ "locations": [ "East US 2 EUAP", "Central US EUAP", + "West US 2", + "UK South", + "East US", + "East US 2", + "West Europe", + "France Central", + "Central US", + "South Central US" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ "West US 2", "UK South" ], "apiVersions": [ "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "None" }, { @@ -67921,6 +69287,212 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationFree" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Fidalgo", + "namespace": "Microsoft.Fidalgo", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "devcenters", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "devcenters/catalogs/items", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "projects/environments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "devcenters/catalogs", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters/mappings", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/CatalogItems", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "projects/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "projects/environments/deployments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HanaOnAzure", "namespace": "Microsoft.HanaOnAzure", @@ -68130,7 +69702,6 @@ "North Europe", "Southeast Asia", "Australia East", - "East US 2 EUAP", "Central India", "West Central US" ], @@ -68416,6 +69987,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-31-preview", "2021-01-11", "2020-03-30", "2020-03-15", @@ -68498,6 +70070,9 @@ { "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2" } ], "resourceTypes": [ @@ -68518,6 +70093,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68548,6 +70126,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68566,6 +70147,9 @@ "West Europe" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68595,6 +70179,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68624,6 +70211,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68640,6 +70230,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -69337,6 +70930,17 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/deviceGroups/devices", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "sites", "locations": [ @@ -70647,6 +72251,11 @@ "apiVersions": [ "2020-10-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -70669,6 +72278,11 @@ "2020-10-01-preview" ], "defaultApiVersion": "2020-10-01-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -70676,7 +72290,8 @@ "locations": [ "Central US EUAP", "East US 2 EUAP", - "West US 2" + "West US 2", + "West Europe" ], "apiVersions": [ "2020-10-01-preview" @@ -70773,7 +72388,7 @@ "2018-03-01-preview" ], "defaultApiVersion": "2021-01-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "workspaces/onlineEndpoints", @@ -72344,9 +73959,10 @@ "United States" ], "apiVersions": [ + "2021-02-01", "2020-02-01-preview" ], - "defaultApiVersion": "2020-02-01-preview", + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -72377,8 +73993,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2018-05-01", - "operations": "2018-05-01" + "default": "2021-02-01", + "operations": "2021-02-01" }, "metrics": { "mdsInfo": [ @@ -72785,7 +74401,8 @@ "Korea Central", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-06-01-preview", @@ -72823,7 +74440,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-05-01-preview", @@ -73010,7 +74628,8 @@ "West Europe", "South Central US", "UK South", - "Southeast Asia" + "Southeast Asia", + "West US 2" ], "apiVersions": [ "2021-03-01-preview", @@ -73151,6 +74770,10 @@ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork", "namespace": "Microsoft.MobileNetwork", "authorizations": [ + { + "applicationId": "54b9b9be-c365-4548-95c6-d2f2011f48f4", + "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e" + }, { "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e" @@ -73163,6 +74786,11 @@ "apiVersions": [ "2020-06-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -73181,6 +74809,11 @@ "apiVersions": [ "2020-06-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -73230,6 +74863,7 @@ "South India", "Southeast Asia", "UAE Central", + "UAE North", "UK South", "UK West", "West Central US", @@ -73241,6 +74875,7 @@ "South Central US (Stage)" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -73344,7 +74979,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-09-09-preview", @@ -73378,7 +75014,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-01-01", @@ -73409,7 +75046,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-09-09-preview", @@ -73440,7 +75078,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-02-01", @@ -73471,7 +75110,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-11-11-preview", @@ -73509,7 +75149,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-07-07" @@ -73574,6 +75215,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -74680,7 +76326,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "Operations", @@ -74798,6 +76444,20 @@ ], "capabilities": "None" }, + { + "resourceType": "accounts", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "accounts/modeling", "locations": [ @@ -74904,6 +76564,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -74995,6 +76656,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2017-07-01", "2016-06-01" ], @@ -75042,9 +76704,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01", "2016-06-01" ], @@ -75092,6 +76756,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75141,6 +76806,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75190,6 +76856,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75239,9 +76906,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01" ], "apiProfiles": [ @@ -75288,9 +76957,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01" ], "apiProfiles": [ @@ -75337,6 +77008,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75387,6 +77059,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75437,6 +77110,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75487,6 +77161,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75537,6 +77212,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75587,6 +77263,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75637,6 +77314,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75686,6 +77364,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -76568,7 +78247,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -76642,7 +78322,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -77423,6 +79104,75 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scom", + "namespace": "Microsoft.Scom", + "authorizations": [ + { + "applicationId": "d3315f6c-968a-40bb-94d2-a6a9503b05f5", + "roleDefinitionId": "a51caa68-288c-4fb0-87d2-a722d0910d90", + "managedByRoleDefinitionId": "2324acd9-7b7e-49d0-a2a8-e084c9adc580" + } + ], + "resourceTypes": [ + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ScVmm", "namespace": "Microsoft.ScVmm", @@ -77472,14 +79222,21 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search", "namespace": "Microsoft.Search", - "authorization": { - "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", - "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" - }, + "authorizations": [ + { + "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", + "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" + }, + { + "applicationId": "880da380-985e-4198-81b9-e05b1cc53158", + "roleDefinitionId": "d2e67903-baaa-4696-926b-61ab86235aaf" + } + ], "resourceTypes": [ { "resourceType": "searchServices", "locations": [ + "Jio India West", "West US 3", "Germany West Central", "Norway East", @@ -77511,6 +79268,7 @@ "UAE North" ], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77534,6 +79292,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77545,6 +79304,7 @@ { "resourceType": "resourceHealthMetadata", "locations": [ + "Jio India West", "West US 3", "Germany West Central", "Norway East", @@ -77576,6 +79336,7 @@ "UAE North" ], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77588,6 +79349,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77738,6 +79500,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" @@ -77756,6 +79519,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77777,6 +79541,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77798,6 +79563,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77817,6 +79583,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77837,6 +79604,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77858,6 +79626,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77877,6 +79646,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77896,6 +79666,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77915,9 +79686,11 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ + "2021-04-01", "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" @@ -77936,6 +79709,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77955,6 +79729,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77975,6 +79750,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77994,6 +79770,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78014,6 +79791,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78034,6 +79812,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78053,6 +79832,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78060,6 +79840,46 @@ ], "capabilities": "SupportsExtension" }, + { + "resourceType": "sourceControls", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "listrepositories", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, { "resourceType": "watchlists", "locations": [ @@ -78072,6 +79892,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78092,6 +79913,27 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "metadata", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78233,6 +80075,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78290,6 +80133,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78370,6 +80214,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78431,6 +80276,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78492,6 +80338,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78553,6 +80400,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78640,6 +80488,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78685,6 +80534,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78730,6 +80580,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78774,6 +80625,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78818,6 +80670,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78862,6 +80715,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78906,6 +80760,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78951,6 +80806,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78996,6 +80852,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -79041,6 +80898,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -79096,6 +80954,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79159,6 +81018,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79197,6 +81057,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79235,6 +81096,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79273,6 +81135,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79320,6 +81183,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79358,6 +81222,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79396,6 +81261,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79434,6 +81300,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79472,6 +81339,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79539,6 +81407,11 @@ "apiVersions": [ "2021-01-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -79559,6 +81432,11 @@ "apiVersions": [ "2021-01-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -79737,7 +81615,22 @@ "apiVersions": [ "2020-12-01-preview" ], - "capabilities": "None" + "capabilities": "SystemAssignedResourceIdentity" + }, + { + "resourceType": "accounts/models", + "locations": [ + "Central US", + "South Central US", + "West Europe", + "West US 2", + "East US" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "SystemAssignedResourceIdentity" }, { "resourceType": "locations", @@ -79994,7 +81887,10 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + "applicationIds": [ + "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "9581bc0e-c952-4fd3-8d99-e777877718b1" + ] } }, "registrationState": "NotRegistered", @@ -80078,6 +81974,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80129,6 +82026,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80197,6 +82095,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80242,6 +82141,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80329,7 +82229,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80375,7 +82276,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80421,7 +82323,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80467,7 +82370,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80513,7 +82417,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80559,7 +82464,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80605,7 +82511,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80651,7 +82558,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80697,7 +82605,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80743,7 +82652,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -83142,7 +85052,8 @@ { "resourceType": "locations/operationstatuses", "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "West US" ], "apiVersions": [ "2020-12-16-preview" @@ -83170,6 +85081,206 @@ "apiVersions": [ "2020-12-16-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "None" } ], @@ -83455,8 +85566,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83476,8 +85592,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83495,9 +85616,9 @@ "West Central US", "West US", "West US 2", + "South Central US", "North Europe", "West Europe", - "South Central US", "UK South", "UK West", "Southeast Asia", @@ -83521,8 +85642,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83541,8 +85667,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json index 14f73d045495..683fbc73ad91 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ListAvailableLocations()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-304e0d5d916ce248a8216687e81fedd3-e01458a9d305ae46-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ea69f816f2f18ccce65ca21918d7337", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:58 GMT", + "Date": "Wed, 16 Jun 2021 00:01:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76abe8e0-b4c9-40ac-8379-884602bba8a2", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "76abe8e0-b4c9-40ac-8379-884602bba8a2", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:76abe8e0-b4c9-40ac-8379-884602bba8a2" + "x-ms-correlation-request-id": "dcaf23c1-9c1d-4d12-a620-a87e134ba9c5", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "dcaf23c1-9c1d-4d12-a620-a87e134ba9c5", + "x-ms-routing-request-id": "WESTUS2:20210616T000104Z:dcaf23c1-9c1d-4d12-a620-a87e134ba9c5" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b52067880987c349bd3a50cc80bac90e-abacb239defb8d4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a1b4f017c15f2845826a56e355683f29-03cf9af89b1bc04c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bcabeba86cfa7cc2b3b13c9ce6eda2", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:51:58 GMT", + "Date": "Wed, 16 Jun 2021 00:01:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd441bcd-69c0-42c6-9ae2-95ea3775d5a3", + "x-ms-correlation-request-id": "0aae8317-f1fd-4567-8745-46f922adf235", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "cd441bcd-69c0-42c6-9ae2-95ea3775d5a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185158Z:cd441bcd-69c0-42c6-9ae2-95ea3775d5a3" + "x-ms-request-id": "0aae8317-f1fd-4567-8745-46f922adf235", + "x-ms-routing-request-id": "WESTUS2:20210616T000105Z:0aae8317-f1fd-4567-8745-46f922adf235" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3699", @@ -91,7 +94,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1df79482b126654eb90ed1ecaa5f09ae-c55cd596df049741-00", + "traceparent": "00-0642cf8ace4c00488b3900624af7ec29-9825d36e09a5734c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "528e1efe62ef073f41b442f10cdf8fa8", "x-ms-return-client-request-id": "true" @@ -100,17 +103,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1310422", + "Content-Length": "1339892", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:01 GMT", + "Date": "Wed, 16 Jun 2021 00:01:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3af9ca57-bb03-42d6-986e-134028929bed", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "3af9ca57-bb03-42d6-986e-134028929bed", - "x-ms-routing-request-id": "WESTUS2:20210519T185201Z:3af9ca57-bb03-42d6-986e-134028929bed" + "x-ms-correlation-request-id": "e5d8d195-12bb-4555-aeeb-25f906524c01", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e5d8d195-12bb-4555-aeeb-25f906524c01", + "x-ms-routing-request-id": "WESTUS2:20210616T000108Z:e5d8d195-12bb-4555-aeeb-25f906524c01" }, "ResponseBody": { "value": [ @@ -731,7 +734,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ "2015-04-01", @@ -866,9 +870,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2017-05-01-preview", "2016-09-01", "2015-07-01" @@ -918,9 +924,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2017-05-01-preview" ], "capabilities": "SupportsExtension" @@ -962,7 +970,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "West US 3" + "West US 3", + "Jio India West" ], "apiVersions": [ "2017-02-01" @@ -1377,7 +1386,9 @@ "Australia Central", "France South", "South India", - "West Central US" + "West Central US", + "West US 3", + "Korea South" ], "apiVersions": [ "2021-03-08", @@ -1431,7 +1442,9 @@ "Australia Central", "France South", "South India", - "West Central US" + "West Central US", + "West US 3", + "Korea South" ], "apiVersions": [ "2020-11-20", @@ -1614,9 +1627,18 @@ "Korea Central", "France Central", "South Africa North", - "Switzerland North" + "Switzerland North", + "Australia Central 2", + "Brazil Southeast", + "France South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West" ], "apiVersions": [ + "2021-04-01", "2019-11-01-preview" ], "defaultApiVersion": "2019-11-01-preview", @@ -1649,9 +1671,21 @@ "Korea Central", "France Central", "South Africa North", - "Switzerland North" + "Switzerland North", + "Brazil South", + "Australia Central 2", + "Brazil Southeast", + "Canada East", + "France South", + "Korea South", + "Norway West", + "UAE North", + "Japan West", + "Norway East", + "Switzerland West" ], "apiVersions": [ + "2021-04-01", "2019-11-01-preview" ], "defaultApiVersion": "2019-11-01-preview", @@ -1858,6 +1892,10 @@ { "applicationId": "62c559cd-db0c-4da0-bab2-972528c65d42", "roleDefinitionId": "437b639a-6d74-491d-959f-d172e8c5c1fc" + }, + { + "applicationId": "a3747411-ce7c-4888-9ddc-3a230786ca19", + "roleDefinitionId": "b29ead14-d6d9-4957-bdf1-494b07fe2e87" } ], "resourceTypes": [ @@ -1898,7 +1936,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -1946,7 +1985,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview" @@ -1990,7 +2030,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview" @@ -2034,7 +2075,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2079,7 +2121,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2124,7 +2167,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2169,7 +2213,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2214,7 +2259,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2259,7 +2305,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2304,7 +2351,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2349,7 +2397,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2396,7 +2445,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2441,7 +2491,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2486,7 +2537,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -2531,7 +2583,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2577,7 +2630,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2623,7 +2677,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2669,7 +2724,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview" @@ -2714,7 +2770,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview" @@ -2790,7 +2847,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2836,7 +2894,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2882,7 +2941,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2929,7 +2989,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-06-01-preview", @@ -2975,7 +3036,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3019,7 +3081,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3063,7 +3126,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3107,7 +3171,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3151,7 +3216,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3195,7 +3261,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3239,7 +3306,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3283,7 +3351,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3327,7 +3396,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3371,7 +3441,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3418,7 +3489,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3465,7 +3537,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3512,7 +3585,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3559,7 +3633,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3606,7 +3681,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3650,7 +3726,8 @@ "Germany West Central", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2018-02-01-preview" @@ -3694,7 +3771,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3742,7 +3820,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-05-01", @@ -3800,7 +3879,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3848,7 +3928,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3896,7 +3977,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -3943,7 +4025,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2017-10-01" @@ -3987,7 +4070,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2017-10-01" @@ -4044,7 +4128,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2019-05-01", @@ -4089,7 +4174,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4139,7 +4225,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4188,7 +4275,8 @@ "Brazil Southeast", "Norway East", "Korea South", - "West US 3" + "West US 3", + "Norway West" ], "apiVersions": [ "2020-11-01-preview", @@ -4334,9 +4422,14 @@ "UAE North", "UAE Central", "Norway East", - "Norway West" + "Norway West", + "West US 3", + "Jio India Central", + "Jio India West", + "Australia Central 2" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2021-02-01", "2020-12-01", @@ -4450,6 +4543,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4499,6 +4596,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4561,6 +4662,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4571,6 +4676,7 @@ "Norway West" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2021-02-01", "2020-12-01", @@ -4624,6 +4730,10 @@ "South Africa North", "Brazil South", "Brazil Southeast", + "Australia Central 2", + "Jio India Central", + "Jio India West", + "West US 3", "Germany North", "Germany West Central", "Switzerland North", @@ -4634,6 +4744,7 @@ "Norway West" ], "apiVersions": [ + "2021-05-01", "2021-03-01" ], "capabilities": "None" @@ -4766,7 +4877,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4821,7 +4933,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -4866,7 +4979,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4921,7 +5035,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -4971,7 +5086,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5021,7 +5137,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5072,7 +5189,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5123,7 +5241,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5174,7 +5293,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5225,7 +5345,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5276,7 +5397,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5327,7 +5449,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5376,7 +5499,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5425,7 +5549,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5474,7 +5599,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5523,7 +5649,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5572,7 +5699,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5621,7 +5749,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5670,7 +5799,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5721,7 +5851,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5772,7 +5903,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5825,7 +5957,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5879,7 +6012,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -5933,7 +6067,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6073,7 +6208,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6118,7 +6254,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6163,7 +6300,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6214,7 +6352,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6259,7 +6398,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6307,7 +6447,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6355,7 +6496,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6400,7 +6542,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6445,7 +6588,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2015-05-01-preview", @@ -6490,7 +6634,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6539,7 +6684,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6584,7 +6730,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6629,7 +6776,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6679,7 +6827,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6728,7 +6877,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -6773,7 +6923,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6823,7 +6974,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -6874,7 +7026,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview", @@ -6920,7 +7073,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -6963,7 +7117,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -7006,7 +7161,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -7049,7 +7205,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7094,7 +7251,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7139,7 +7297,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -7184,7 +7343,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7235,7 +7395,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7286,7 +7447,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7337,7 +7499,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7388,7 +7551,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7438,7 +7602,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7484,7 +7649,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7534,7 +7700,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7584,7 +7751,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7634,7 +7802,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7684,7 +7853,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7730,7 +7900,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7776,7 +7947,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7828,7 +8000,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7880,7 +8053,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -7961,7 +8135,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8008,7 +8183,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8058,7 +8234,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8108,7 +8285,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8158,7 +8336,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8208,7 +8387,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8258,7 +8438,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8308,7 +8489,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -8353,7 +8535,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8403,7 +8586,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8453,7 +8637,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8503,7 +8688,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8554,7 +8740,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8605,7 +8792,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8656,7 +8844,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8707,7 +8896,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8758,7 +8948,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8810,7 +9001,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8861,7 +9053,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8913,7 +9106,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -8965,7 +9159,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9017,7 +9212,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9069,7 +9265,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9119,7 +9316,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9164,7 +9362,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9209,7 +9408,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9254,7 +9454,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9299,7 +9500,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9344,7 +9546,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9389,7 +9592,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9434,7 +9638,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9479,7 +9684,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9533,7 +9739,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9584,7 +9791,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9638,7 +9846,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -9683,7 +9892,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9734,7 +9944,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9785,7 +9996,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9836,7 +10048,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9883,7 +10096,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9933,7 +10147,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -9981,7 +10196,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10031,7 +10247,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10079,7 +10296,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10130,7 +10348,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10177,7 +10396,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10226,7 +10446,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10275,7 +10496,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10325,7 +10547,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10376,7 +10599,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10427,7 +10651,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10478,7 +10703,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10526,7 +10752,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10573,7 +10800,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10620,7 +10848,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10668,7 +10897,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10716,7 +10946,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10801,7 +11032,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10851,7 +11083,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -10924,7 +11157,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2019-06-01-preview", @@ -10969,7 +11203,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11019,7 +11254,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11069,7 +11305,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11117,7 +11354,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11166,7 +11404,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11213,7 +11452,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11260,7 +11500,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11307,7 +11548,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11354,7 +11596,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11402,7 +11645,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11450,7 +11694,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11498,7 +11743,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11546,7 +11792,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11594,7 +11841,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11642,7 +11890,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11692,7 +11941,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11742,7 +11992,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11792,7 +12043,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11842,7 +12094,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11890,7 +12143,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11938,7 +12192,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -11988,7 +12243,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12037,7 +12293,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12086,7 +12343,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12135,7 +12393,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12185,7 +12444,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12235,7 +12495,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12285,7 +12546,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12336,7 +12598,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12387,7 +12650,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12438,7 +12702,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12489,7 +12754,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12540,7 +12806,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12590,7 +12857,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12640,7 +12908,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12691,7 +12960,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12742,7 +13012,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12793,7 +13064,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12844,7 +13116,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12894,7 +13167,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12944,7 +13218,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -12994,7 +13269,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13044,7 +13320,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13094,7 +13371,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13144,7 +13422,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13193,7 +13472,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13242,7 +13522,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13292,7 +13573,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13342,7 +13624,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13391,7 +13674,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13440,7 +13724,58 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" + ], + "apiVersions": [ + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview", + "2017-10-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13448,13 +13783,12 @@ "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview" + "2018-06-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyOperationResults", + "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13489,7 +13823,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13502,7 +13837,7 @@ "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", + "resourceType": "locations/privateEndpointConnectionOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13537,7 +13872,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13550,7 +13886,7 @@ "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionOperationResults", + "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13585,20 +13921,16 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview", - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview" + "2021-02-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "resourceType": "locations/outboundFirewallRulesOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13633,7 +13965,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview" @@ -13641,7 +13974,7 @@ "capabilities": "None" }, { - "resourceType": "locations/outboundFirewallRulesOperationResults", + "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13676,15 +14009,21 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview" + "2021-02-01-preview", + "2020-11-01-preview", + "2020-08-01-preview", + "2020-02-02-preview", + "2019-06-01-preview", + "2018-06-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "resourceType": "locations/notifyAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13719,7 +14058,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13727,12 +14067,15 @@ "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview" + "2018-06-01-preview", + "2017-10-01-preview", + "2017-03-01-preview", + "2015-05-01-preview" ], "capabilities": "None" }, { - "resourceType": "locations/notifyAzureAsyncOperation", + "resourceType": "locations/serverTrustGroups", "locations": [ "Australia Central", "Australia East", @@ -13767,23 +14110,19 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", - "2019-06-01-preview", - "2018-06-01-preview", - "2017-10-01-preview", - "2017-03-01-preview", - "2015-05-01-preview" + "2020-02-02-preview" ], "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroups", + "resourceType": "locations/serverTrustGroupOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13818,7 +14157,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13829,7 +14169,7 @@ "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroupOperationResults", + "resourceType": "locations/serverTrustGroupAzureAsyncOperation", "locations": [ "Australia Central", "Australia East", @@ -13864,7 +14204,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2021-02-01-preview", @@ -13875,7 +14216,7 @@ "capabilities": "None" }, { - "resourceType": "locations/serverTrustGroupAzureAsyncOperation", + "resourceType": "locations/managedDatabaseMoveOperationResults", "locations": [ "Australia Central", "Australia East", @@ -13910,13 +14251,55 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ - "2021-02-01-preview", - "2020-11-01-preview", - "2020-08-01-preview", - "2020-02-02-preview" + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "locations/managedDatabaseMoveAzureAsyncOperation", + "locations": [ + "Australia Central", + "Australia East", + "Australia Southeast", + "Brazil South", + "Canada Central", + "Canada East", + "Central India", + "Central US", + "East Asia", + "East US", + "East US 2", + "France Central", + "Germany West Central", + "Japan East", + "Japan West", + "Jio India West", + "Korea Central", + "Korea South", + "North Central US", + "North Europe", + "Norway East", + "South Africa North", + "South Central US", + "South India", + "Southeast Asia", + "Switzerland North", + "UAE North", + "UK South", + "UK West", + "West Central US", + "West Europe", + "West India", + "West US", + "West US 2", + "West US 3" + ], + "apiVersions": [ + "2021-02-01-preview" ], "capabilities": "None" }, @@ -13956,7 +14339,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2014-04-01-preview", @@ -15604,16 +15988,23 @@ "resourceType": "flexibleServers", "locations": [ "Australia East", + "Australia Southeast", "Brazil South", "Canada Central", "Central US", "East US", "East US 2", "France Central", + "Korea Central", "Japan East", "North Europe", + "Norway East", + "South Africa North", "Southeast Asia", + "Switzerland North", + "UAE North", "UK South", + "West US", "West US 2", "West Europe" ], @@ -15712,6 +16103,10 @@ "3" ] }, + { + "location": "South Africa North", + "zones": [] + }, { "location": "Canada Central", "zones": [ @@ -15727,6 +16122,14 @@ "1", "3" ] + }, + { + "location": "Korea Central", + "zones": [] + }, + { + "location": "Norway East", + "zones": [] } ], "metadata": { @@ -15783,11 +16186,13 @@ "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -15815,11 +16220,13 @@ "Germany West Central", "Japan East", "Japan West", + "Korea Central", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -16251,12 +16658,14 @@ "Germany West Central", "Japan West", "Japan East", + "Korea Central", "North Central US", "North Europe", "Norway East", "South Africa North", "South Central US", "Southeast Asia", + "Switzerland North", "UAE North", "UK South", "West Europe", @@ -17269,6 +17678,8 @@ { "resourceType": "workspaces", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17296,7 +17707,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "": "2019-01-23-preview" + "default": "2019-01-23-preview", + "operations": "2019-01-23-preview" }, "logs": { "mdsInfo": [ @@ -17316,6 +17728,8 @@ { "resourceType": "applicationgroups", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17343,6 +17757,8 @@ { "resourceType": "applicationgroups/applications", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17370,6 +17786,8 @@ { "resourceType": "applicationgroups/desktops", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17397,6 +17815,8 @@ { "resourceType": "applicationgroups/startmenuitems", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17424,6 +17844,8 @@ { "resourceType": "hostpools", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17451,7 +17873,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "": "2019-01-23-preview" + "default": "2019-01-23-preview", + "operations": "2019-01-23-preview" }, "logs": { "mdsInfo": [ @@ -17473,6 +17896,8 @@ { "resourceType": "hostpools/msixpackages", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17500,6 +17925,8 @@ { "resourceType": "hostpools/sessionhosts", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17527,6 +17954,8 @@ { "resourceType": "hostpools/sessionhosts/usersessions", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17554,6 +17983,8 @@ { "resourceType": "hostpools/usersessions", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17579,8 +18010,10 @@ "capabilities": "None" }, { - "resourceType": "scalingPlans", + "resourceType": "scalingplans", "locations": [ + "UK South", + "UK West", "North Europe", "West Europe", "East US", @@ -17623,7 +18056,7 @@ } ], "metadata": { - "build": "1.0.3164.0", + "build": "", "microsoft.insights": { "monitoringResourceProvider": { "version": "1.0", @@ -17674,6 +18107,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17719,6 +18153,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17729,6 +18164,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17750,6 +18186,7 @@ "West Europe" ], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17760,6 +18197,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-10-01", "2018-09-01-preview", "2018-09-01" @@ -17942,7 +18380,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2018-01-01-preview", @@ -18089,6 +18528,127 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", + "namespace": "Microsoft.Communication", + "authorizations": [ + { + "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", + "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" + } + ], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "CommunicationServices", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "CommunicationServices/eventGridFilters", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "registeredSubscriptions", + "locations": [], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "defaultApiVersion": "2020-08-20-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/operationStatuses", + "locations": [ + "West US 2" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "capabilities": "None" + }, + { + "resourceType": "CheckNameAvailability", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-08-20-preview", + "2020-08-20" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "Registered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DataShare", "namespace": "Microsoft.DataShare", @@ -19010,7 +19570,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -19266,7 +19827,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -19338,7 +19900,8 @@ "WEST EUROPE", "CANADA CENTRAL", "CENTRAL US", - "EAST US" + "EAST US", + "Switzerland North" ], "apiVersions": [ "2020-07-01-privatepreview", @@ -20897,7 +21460,11 @@ }, { "location": "West US 3", - "zones": [] + "zones": [ + "2", + "1", + "3" + ] }, { "location": "Norway East", @@ -21241,7 +21808,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21325,7 +21893,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21463,7 +22032,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21487,7 +22057,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21511,7 +22082,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21535,7 +22107,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21559,7 +22132,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21583,7 +22157,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21607,7 +22182,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21632,7 +22208,8 @@ "Australia East", "North Europe", "Central US", - "Central India" + "Central India", + "West Central US" ], "apiVersions": [ "2021-03-01", @@ -21814,6 +22391,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -21936,6 +22514,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22040,6 +22619,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22198,9 +22778,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22258,6 +22850,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22457,9 +23050,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22534,6 +23139,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22678,9 +23284,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -22753,6 +23371,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22876,6 +23495,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -22925,6 +23545,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23002,6 +23623,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23060,6 +23682,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23193,6 +23816,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23326,6 +23950,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23411,6 +24036,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23484,6 +24110,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23553,6 +24180,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23657,6 +24285,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23818,9 +24447,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -23861,6 +24502,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -23925,6 +24567,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24015,6 +24658,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24106,6 +24750,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24181,6 +24826,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24272,6 +24918,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24411,6 +25058,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24515,6 +25163,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24639,6 +25288,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -24824,9 +25474,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -24898,6 +25560,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25028,6 +25691,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25131,6 +25795,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25234,6 +25899,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25323,6 +25989,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25372,6 +26039,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25475,6 +26143,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25552,6 +26221,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25620,6 +26290,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25680,6 +26351,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25740,6 +26412,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25796,6 +26469,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25855,6 +26529,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25914,6 +26589,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -25965,6 +26641,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26016,6 +26693,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26084,6 +26762,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26130,6 +26809,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26176,6 +26856,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26244,6 +26925,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26312,6 +26994,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26380,6 +27063,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -26448,6 +27132,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27152,6 +27837,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27276,6 +27962,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27365,6 +28052,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27443,6 +28131,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27519,6 +28208,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27581,6 +28271,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27643,6 +28334,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27705,6 +28397,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27795,6 +28488,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27874,6 +28568,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -27949,6 +28644,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28022,6 +28718,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28079,6 +28776,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28154,6 +28852,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28262,6 +28961,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28359,6 +29059,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28667,6 +29368,7 @@ "South Africa North", "UAE North", "Switzerland North", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28720,6 +29422,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -28884,9 +29587,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "metadata": { @@ -28962,6 +29677,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29026,6 +29742,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29091,6 +29808,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29173,6 +29891,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29224,6 +29943,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29301,6 +30021,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29640,6 +30361,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29705,6 +30427,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -29961,6 +30684,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -30189,6 +30913,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30196,6 +30921,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30274,6 +31000,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30281,6 +31008,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30357,6 +31085,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30364,6 +31093,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30442,6 +31172,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30449,6 +31180,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30499,6 +31231,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -30534,6 +31267,7 @@ "Japan East" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01" @@ -30579,6 +31313,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30586,6 +31321,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30664,6 +31400,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30671,6 +31408,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30749,6 +31487,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30756,6 +31495,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30772,6 +31512,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -30807,6 +31548,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30851,6 +31593,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -30858,6 +31601,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30874,6 +31618,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -30909,6 +31654,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01" ], @@ -30924,6 +31670,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30963,6 +31710,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -30998,6 +31746,7 @@ "East Asia" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31062,6 +31811,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -31069,6 +31819,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31144,6 +31895,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31184,6 +31936,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "East US", @@ -31219,6 +31972,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31262,6 +32016,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "East US", @@ -31297,6 +32052,7 @@ "North Central US (Stage)" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31340,6 +32096,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31375,6 +32132,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31422,6 +32180,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31457,6 +32216,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31504,6 +32264,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31539,6 +32300,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31586,6 +32348,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31621,6 +32384,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31696,6 +32460,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -31703,6 +32468,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31753,6 +32519,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -31788,6 +32555,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31839,6 +32607,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -31874,6 +32643,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -31960,6 +32730,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -31995,6 +32766,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32131,6 +32903,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -32166,6 +32939,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32238,6 +33012,7 @@ "resourceType": "runtimes", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32280,6 +33055,7 @@ "resourceType": "recommendations", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32323,6 +33099,7 @@ "resourceType": "resourceHealthMetadata", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32366,6 +33143,7 @@ "resourceType": "georegions", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32416,6 +33194,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32451,6 +33230,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32495,6 +33275,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Central US", + "West US 3", "South Africa North", "West US 2", "East US 2", @@ -32531,6 +33312,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32604,6 +33386,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32639,6 +33422,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32712,6 +33496,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32747,6 +33532,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32813,9 +33599,12 @@ "resourceType": "kubeEnvironments", "locations": [ "North Central US (Stage)", - "West Central US" + "West Central US", + "East US", + "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32895,6 +33684,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -32902,6 +33692,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -32952,6 +33743,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -32987,6 +33779,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33037,6 +33830,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "East Asia", "Japan East", "West US", @@ -33072,6 +33866,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33116,6 +33911,7 @@ "resourceType": "ishostingenvironmentnameavailable", "locations": [], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33166,6 +33962,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -33201,6 +33998,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33867,6 +34665,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -33874,6 +34673,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -33953,6 +34753,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -33960,6 +34761,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34039,6 +34841,7 @@ "North Central US (Stage)", "France Central", "South Africa North", + "West US 3", "Australia Central", "Switzerland North", "Germany West Central", @@ -34046,6 +34849,7 @@ "UAE North" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34096,6 +34900,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34133,6 +34938,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34167,6 +34973,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34204,6 +35011,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34242,6 +35050,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34279,6 +35088,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34321,6 +35131,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US 2", "East US 2", "UK South", @@ -34351,6 +35162,7 @@ "West Europe" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34388,6 +35200,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34425,6 +35238,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34459,6 +35273,7 @@ "East US 2 (Stage)", "Central US (Stage)", "South Africa North", + "West US 3", "West US", "Australia East", "Brazil South", @@ -34496,6 +35311,7 @@ "South Africa West" ], "apiVersions": [ + "2021-01-01", "2020-12-01", "2020-10-01", "2020-09-01", @@ -34518,6 +35334,19 @@ "2014-04-01" ], "capabilities": "None" + }, + { + "resourceType": "workerApps", + "locations": [ + "North Central US (Stage)" + ], + "apiVersions": [ + "2021-02-01", + "2021-01-01", + "2020-12-01" + ], + "defaultApiVersion": "2021-02-01", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" } ], "metadata": { @@ -34644,9 +35473,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -34717,9 +35548,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -34885,6 +35718,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -34932,9 +35773,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35005,9 +35848,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35174,6 +36019,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -35229,9 +36082,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35303,9 +36158,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35377,9 +36234,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35450,9 +36309,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35525,9 +36386,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35600,9 +36463,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35631,6 +36496,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35686,9 +36552,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35759,9 +36627,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35831,9 +36701,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35894,9 +36766,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -35966,9 +36840,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36031,9 +36907,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36096,9 +36974,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -36169,9 +37049,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36234,7 +37116,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -36277,9 +37160,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36331,9 +37216,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36384,9 +37271,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36436,9 +37325,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -36483,6 +37374,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -36526,9 +37418,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -36572,9 +37466,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -36618,9 +37514,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -36804,9 +37702,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36852,9 +37752,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36900,9 +37802,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36948,9 +37852,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -36996,9 +37902,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -37044,9 +37952,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37204,6 +38114,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -37251,9 +38169,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37316,9 +38236,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37380,9 +38302,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37434,9 +38358,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -37481,7 +38407,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37621,6 +38548,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -37676,7 +38611,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37729,7 +38665,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37774,7 +38711,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37818,7 +38756,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -37862,7 +38801,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -37906,7 +38846,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37950,7 +38891,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -37994,7 +38936,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -38038,9 +38981,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38104,9 +39049,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38156,9 +39103,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38301,6 +39250,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -38348,9 +39305,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -38493,6 +39452,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -38554,6 +39521,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -38599,6 +39567,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -38644,6 +39613,7 @@ "Brazil South", "Central India", "West India", + "Jio India West", "South India", "Japan West", "Japan East", @@ -39254,6 +40224,7 @@ "South India" ], "apiVersions": [ + "2020-10-01", "2020-08-01", "2020-03-01-preview" ], @@ -39449,6 +40420,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2020-07-01-preview", "2020-01-01", "2017-04-19", "2017-03-31", @@ -39536,6 +40508,16 @@ ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, + { + "resourceType": "migrateFromSmartDetection", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "actionRules", "locations": [ @@ -40362,7 +41344,7 @@ "apiVersions": [ "2020-05-01" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "operationStatus", @@ -42445,7 +43427,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-02-01", @@ -42532,6 +43515,7 @@ "Switzerland North", "Norway East", "Jio India West", + "West US 3", "Germany West Central" ], "apiVersions": [ @@ -42586,7 +43570,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -42645,6 +43630,7 @@ "Korea Central", "Korea South", "France Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -42690,7 +43676,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2017-04-01", @@ -42780,6 +43767,7 @@ "Germany West Central", "Norway East", "Jio India West", + "West US 3", "West US", "Central US", "South Central US", @@ -42835,6 +43823,7 @@ "West Central US", "Germany West Central", "Norway East", + "West US 3", "South India", "Central India", "West India", @@ -42887,6 +43876,7 @@ "Korea Central", "Korea South", "France Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -43048,7 +44038,8 @@ "Jio India West", "Australia Central", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2017-11-15", @@ -43178,7 +44169,8 @@ "Jio India West", "Australia Central", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -43270,6 +44262,7 @@ "Jio India West", "Australia Central", "Germany West Central", + "West US 3", "Norway East" ], "apiVersions": [ @@ -43403,7 +44396,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2016-11-01", @@ -43482,7 +44476,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2014-04-01" @@ -43527,7 +44522,8 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2014-04-01" @@ -43580,6 +44576,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -43633,6 +44630,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -44413,9 +45411,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44495,6 +45497,9 @@ "resourceType": "databaseAccountNames", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44553,6 +45558,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44611,6 +45619,9 @@ "resourceType": "operationResults", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44669,6 +45680,9 @@ "resourceType": "operationsStatus", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44759,9 +45773,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44852,9 +45870,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44913,6 +45935,9 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -44969,9 +45994,13 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-15", + "2021-05-01-preview", "2021-04-15", "2021-04-01-preview", "2021-03-15", @@ -45028,9 +46057,12 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview", "2020-06-01-preview" @@ -45073,9 +46105,12 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-06-15", + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview", "2020-06-01-preview" @@ -45118,9 +46153,11 @@ "West US", "South Central US", "East US", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-05-01-preview", "2021-04-01-preview", "2021-03-01-preview" ], @@ -45163,6 +46200,9 @@ { "applicationId": "4962773b-9cdb-44cf-a8bf-237846a00ab7", "roleDefinitionId": "7FE036D8-246F-48BF-A78F-AB3EE699C8F3" + }, + { + "applicationId": "823c0a78-5de0-4445-a7f5-c2f42d7dc89b" } ], "resourceTypes": [ @@ -46016,7 +47056,7 @@ "2020-10-15-preview", "2020-04-01-preview" ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "partnerTopics/eventSubscriptions", @@ -47091,7 +48131,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-01-01-preview", @@ -47145,7 +48186,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2018-01-01-preview" @@ -47156,6 +48198,8 @@ "resourceType": "namespaces/authorizationrules", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47172,6 +48216,7 @@ "resourceType": "namespaces/networkrulesets", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview", "2017-04-01" ], @@ -47187,6 +48232,7 @@ "resourceType": "namespaces/privateEndpointConnections", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2018-01-01-preview" ], "capabilities": "None" @@ -47195,6 +48241,8 @@ "resourceType": "namespaces/eventhubs", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47211,6 +48259,8 @@ "resourceType": "namespaces/eventhubs/authorizationrules", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47227,6 +48277,8 @@ "resourceType": "namespaces/eventhubs/consumergroups", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47258,6 +48310,8 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47290,6 +48344,8 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -47306,6 +48362,8 @@ "resourceType": "namespaces/disasterrecoveryconfigs", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01" ], "apiProfiles": [ @@ -47320,6 +48378,8 @@ "resourceType": "namespaces/disasterrecoveryconfigs/checkNameAvailability", "locations": [], "apiVersions": [ + "2021-01-01-preview", + "2018-01-01-preview", "2017-04-01", "2015-08-01", "2014-09-01" @@ -48291,6 +49351,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48355,6 +49416,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48419,6 +49481,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48534,6 +49597,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48609,6 +49673,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48664,6 +49729,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48713,6 +49779,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48768,6 +49835,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48891,6 +49959,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -48937,6 +50006,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -49033,7 +50103,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2021-05-01", @@ -49047,6 +50118,25 @@ "defaultApiVersion": "2020-05-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, + { + "resourceType": "videoAnalyzers", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, { "resourceType": "mediaservices/assets", "locations": [ @@ -49086,7 +50176,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49136,7 +50227,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49186,7 +50278,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49236,7 +50329,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49286,7 +50380,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2018-02-05" @@ -49333,7 +50428,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49383,7 +50479,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49433,7 +50530,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49484,7 +50582,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49535,7 +50634,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49586,7 +50686,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49637,7 +50738,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49688,7 +50790,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49739,7 +50842,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49787,7 +50891,8 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2020-05-01", @@ -49796,6 +50901,63 @@ "defaultApiVersion": "2018-07-01", "capabilities": "None" }, + { + "resourceType": "videoAnalyzers/accessPolicies", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "videoAnalyzers/edgeModules", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, + { + "resourceType": "videoAnalyzers/videos", + "locations": [ + "Southeast Asia", + "North Europe", + "West Europe", + "Central India", + "Japan East", + "Korea Central", + "East US 2", + "West US 2" + ], + "apiVersions": [ + "2021-05-01-privatepreview", + "2021-05-01-preview" + ], + "defaultApiVersion": "2021-05-01-preview", + "capabilities": "None" + }, { "resourceType": "operations", "locations": [], @@ -49803,7 +50965,6 @@ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -49832,7 +50993,6 @@ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -49880,13 +51040,13 @@ "Germany North", "Switzerland West", "Switzerland North", - "Norway East" + "Norway East", + "West US 3" ], "apiVersions": [ "2021-05-01-privatepreview", "2021-05-01-preview", "2021-05-01", - "2021-03-01-preview", "2020-05-01", "2018-07-01", "2018-06-01-preview", @@ -50367,6 +51527,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50415,6 +51576,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50463,6 +51625,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50636,6 +51799,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -50698,6 +51869,7 @@ "UAE North", "Switzerland North", "Germany West Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50776,6 +51948,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50846,6 +52019,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50909,6 +52083,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -50972,6 +52147,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51035,6 +52211,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51098,6 +52275,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51161,6 +52339,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51255,6 +52434,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51321,6 +52501,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51420,6 +52601,7 @@ "UAE North", "Switzerland North", "Germany West Central", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51498,6 +52680,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51553,6 +52736,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -51596,6 +52780,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -52624,7 +53809,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52653,6 +53840,7 @@ "West India", "Canada Central", "Canada East", + "West Central US", "West US 2", "Korea Central", "Korea South", @@ -52668,7 +53856,8 @@ "UK West", "France Central", "France South", - "West Central US" + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52719,7 +53908,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52769,7 +53960,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52812,7 +54005,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52855,7 +54050,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -52907,7 +54104,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -52950,7 +54149,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -52993,7 +54194,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53044,7 +54247,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53086,7 +54291,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2020-08-06-preview" @@ -53129,7 +54336,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01" @@ -53172,7 +54381,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -53216,7 +54427,9 @@ "UK South", "UK West", "France Central", - "France South" + "France South", + "Germany West Central", + "Germany North" ], "apiVersions": [ "2019-08-01", @@ -53231,6 +54444,7 @@ "East US" ], "apiVersions": [ + "2021-06-01", "2019-01-01", "2017-08-01-preview" ], @@ -53320,6 +54534,14 @@ "2019-01-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "ingestionSettings", + "locations": [], + "apiVersions": [ + "2021-01-15-preview" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -53374,7 +54596,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-01-01-preview", @@ -53648,7 +54871,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2017-04-01", @@ -54080,56 +55304,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/LiveArena.Broadcast", - "namespace": "LiveArena.Broadcast", - "resourceTypes": [ - { - "resourceType": "services", - "locations": [ - "West US", - "North Europe", - "Japan West", - "Japan East", - "East Asia", - "West Europe", - "East US", - "Southeast Asia", - "Central US" - ], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "listCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - }, - { - "resourceType": "updateCommunicationPreference", - "locations": [], - "apiVersions": [ - "2016-06-15" - ], - "capabilities": "None" - } - ], - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.AAD", "namespace": "Microsoft.AAD", @@ -54184,12 +55358,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "SupportsTags, SupportsLocation" }, { @@ -54228,11 +55403,12 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54271,12 +55447,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54315,12 +55492,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" }, { @@ -54359,12 +55537,13 @@ "Norway East" ], "apiVersions": [ + "2021-05-01", "2021-03-01", "2020-01-01", "2017-06-01", "2017-01-01" ], - "defaultApiVersion": "2021-03-01", + "defaultApiVersion": "2021-05-01", "capabilities": "None" } ], @@ -55076,7 +56255,10 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + "applicationIds": [ + "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "9581bc0e-c952-4fd3-8d99-e777877718b1" + ] } }, "registrationState": "NotRegistered", @@ -55416,6 +56598,11 @@ "apiVersions": [ "2020-09-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -55494,6 +56681,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55525,6 +56713,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55556,6 +56745,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55587,6 +56777,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55598,6 +56789,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55609,6 +56801,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55640,6 +56833,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55671,6 +56865,7 @@ "South Africa North" ], "apiVersions": [ + "2021-06-01-preview", "2020-11-01-preview", "2020-07-01", "2019-05-01-preview" @@ -55915,6 +57110,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -55968,6 +57165,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56021,6 +57220,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56071,6 +57272,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56136,6 +57339,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56185,6 +57390,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56236,6 +57443,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56281,6 +57490,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56326,6 +57537,8 @@ "South India", "France South", "Norway West", + "West US 3", + "Korea South", "Southeast Asia", "South Central US", "North Central US", @@ -56514,6 +57727,18 @@ ], "defaultApiVersion": "2020-05-01-preview", "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [ + "West US", + "West US 2" + ], + "apiVersions": [ + "2020-05-01-preview" + ], + "defaultApiVersion": "2020-05-01-preview", + "capabilities": "None" } ], "metadata": { @@ -56629,88 +57854,114 @@ "East Asia" ], "apiVersions": [ - "2021-01-01-preview", - "2020-07-17-preview", - "2020-03-20" - ], - "metadata": { - "microsoft.insights": { - "monitoringResourceProvider": { - "version": "1.0", - "metrics": { - "mdsInfo": [ - { - "serviceIdentity": "Microsoft.AVS" - } - ], - "mdmInfo": [ - { - "enableRegionalMdmAccount": true, - "sourceMdmAccount": "AVSShoebox2", - "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" - } - ] - } - } - } - }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "privateClouds/clusters", - "locations": [ - "East US", - "North Central US", - "West US", - "West Europe", - "Australia East", - "South Central US", - "Japan East", - "UK South", - "Canada Central", - "North Europe", - "Southeast Asia", - "UK West", - "East US 2", - "Central US", - "Australia Southeast", - "Canada East", - "East Asia" - ], - "apiVersions": [ - "2021-01-01-preview", + "2021-01-01-preview", + "2020-07-17-preview", + "2020-03-20" + ], + "metadata": { + "microsoft.insights": { + "monitoringResourceProvider": { + "version": "1.0", + "metrics": { + "mdsInfo": [ + { + "serviceIdentity": "Microsoft.AVS" + } + ], + "mdmInfo": [ + { + "enableRegionalMdmAccount": true, + "sourceMdmAccount": "AVSShoebox2", + "sourceMdmNamespace": "Vsphere.Cluster.ClusterServices" + } + ] + } + } + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "privateClouds/clusters", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ + "2021-01-01-preview", + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/authorizations", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ + "2020-03-20" + ], + "capabilities": "None" + }, + { + "resourceType": "privateClouds/hcxEnterpriseSites", + "locations": [ + "East US", + "North Central US", + "West US", + "West Europe", + "Australia East", + "South Central US", + "Japan East", + "UK South", + "Canada Central", + "North Europe", + "Southeast Asia", + "UK West", + "East US 2", + "Central US", + "Australia Southeast", + "Canada East", + "East Asia" + ], + "apiVersions": [ "2020-03-20" ], "capabilities": "None" }, { - "resourceType": "privateClouds/authorizations", - "locations": [ - "East US", - "North Central US", - "West US", - "West Europe", - "Australia East", - "South Central US", - "Japan East", - "UK South", - "Canada Central", - "North Europe", - "Southeast Asia", - "UK West", - "East US 2", - "Central US", - "Australia Southeast", - "Canada East", - "East Asia" - ], - "apiVersions": [ - "2020-03-20" - ], - "capabilities": "None" - }, - { - "resourceType": "privateClouds/hcxEnterpriseSites", + "resourceType": "privateClouds/globalReachConnections", "locations": [ "East US", "North Central US", @@ -56731,12 +57982,12 @@ "East Asia" ], "apiVersions": [ - "2020-03-20" + "2020-07-17-preview" ], "capabilities": "None" }, { - "resourceType": "privateClouds/globalReachConnections", + "resourceType": "privateClouds/addons", "locations": [ "East US", "North Central US", @@ -56762,7 +58013,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/addons", + "resourceType": "privateClouds/workloadNetworks", "locations": [ "East US", "North Central US", @@ -56788,7 +58039,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks", + "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", "locations": [ "East US", "North Central US", @@ -56814,7 +58065,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dhcpConfigurations", + "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", "locations": [ "East US", "North Central US", @@ -56840,7 +58091,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/portMirroringProfiles", + "resourceType": "privateClouds/workloadNetworks/segments", "locations": [ "East US", "North Central US", @@ -56866,7 +58117,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/segments", + "resourceType": "privateClouds/workloadNetworks/vmGroups", "locations": [ "East US", "North Central US", @@ -56892,7 +58143,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/vmGroups", + "resourceType": "privateClouds/workloadNetworks/gateways", "locations": [ "East US", "North Central US", @@ -56918,7 +58169,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/gateways", + "resourceType": "privateClouds/workloadNetworks/virtualMachines", "locations": [ "East US", "North Central US", @@ -56944,7 +58195,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/virtualMachines", + "resourceType": "privateClouds/workloadNetworks/dnsServices", "locations": [ "East US", "North Central US", @@ -56970,7 +58221,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dnsServices", + "resourceType": "privateClouds/workloadNetworks/dnsZones", "locations": [ "East US", "North Central US", @@ -56996,7 +58247,7 @@ "capabilities": "None" }, { - "resourceType": "privateClouds/workloadNetworks/dnsZones", + "resourceType": "privateClouds/cloudLinks", "locations": [ "East US", "North Central US", @@ -57017,7 +58268,7 @@ "East Asia" ], "apiVersions": [ - "2020-07-17-preview" + "2021-06-01" ], "capabilities": "None" } @@ -57468,8 +58719,6 @@ { "resourceType": "catalogs", "locations": [ - "East US 2 EUAP", - "Central US EUAP", "global" ], "apiVersions": [ @@ -57480,7 +58729,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "SupportsTags, SupportsLocation" }, { "resourceType": "catalogs/products", @@ -57495,7 +58744,107 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + "capabilities": "None" + }, + { + "resourceType": "catalogs/products/devicegroups", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/devices", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations/operationStatuses", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "catalogs/certificates", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/images", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "catalogs/deployments", + "locations": [ + "global" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -57525,6 +58874,7 @@ "Global" ], "apiVersions": [ + "2021-05-01-preview", "2020-06-01-preview", "2017-06-01" ], @@ -57618,6 +58968,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-01-01-preview", "2020-11-01-preview", "2020-10-01" ], @@ -57629,7 +58980,7 @@ "capabilities": "None" }, { - "resourceType": "Locations/OperationStatuses", + "resourceType": "locations/operationStatuses", "locations": [ "East US", "East US 2 EUAP", @@ -57637,6 +58988,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-10-01" ], "capabilities": "None" @@ -57649,6 +59001,7 @@ "Southeast Asia" ], "apiVersions": [ + "2021-01-01-preview", "2020-10-01" ], "metadata": { @@ -57657,6 +59010,40 @@ } }, "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "clusters/arcSettings", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "clusters/arcSettings/extensions", + "locations": [ + "East US", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-01-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" } ], "metadata": { @@ -58086,6 +59473,14 @@ ], "capabilities": "None" }, + { + "resourceType": "billingAccounts/policies", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/operationResults", "locations": [], @@ -58441,6 +59836,7 @@ "resourceType": "billingAccounts/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58451,6 +59847,7 @@ "resourceType": "billingAccounts/billingProfiles/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58548,6 +59945,7 @@ "resourceType": "billingAccounts/billingSubscriptions/invoices", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview" ], @@ -58854,6 +60252,7 @@ "resourceType": "billingAccounts/agreements", "locations": [], "apiVersions": [ + "2020-11-01-privatepreview", "2020-05-01", "2019-10-01-preview", "2018-11-01-preview" @@ -58887,6 +60286,14 @@ ], "capabilities": "None" }, + { + "resourceType": "billingAccounts/billingProfiles/paymentMethodLinks", + "locations": [], + "apiVersions": [ + "2020-11-01-privatepreview" + ], + "capabilities": "None" + }, { "resourceType": "billingAccounts/payableOverage", "locations": [], @@ -58965,6 +60372,15 @@ "2020-12-15-beta" ], "capabilities": "None" + }, + { + "resourceType": "billingAccounts/appliedReservationOrders", + "locations": [], + "apiVersions": [ + "2020-12-15-privatepreview", + "2020-12-15-beta" + ], + "capabilities": "None" } ], "registrationState": "Registered", @@ -59415,6 +60831,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "metadata": { @@ -59479,6 +60899,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59507,6 +60931,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59535,6 +60963,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59574,6 +61006,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -59602,6 +61038,10 @@ { "profileVersion": "2020-09-01-hybrid", "apiVersion": "2020-06-02" + }, + { + "profileVersion": "2019-03-01-hybrid", + "apiVersion": "2021-03-01" } ], "capabilities": "None" @@ -60153,6 +61593,7 @@ "resourceType": "resourceChanges", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2021-04-01", "2020-04-01-preview" ], @@ -60162,10 +61603,27 @@ "resourceType": "changes", "locations": [], "apiVersions": [ + "2021-04-01-preview", "2021-04-01", "2020-10-01-preview" ], "capabilities": "SupportsExtension" + }, + { + "resourceType": "changeSnapshots", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "computeChanges", + "locations": [], + "apiVersions": [ + "2021-04-01-preview" + ], + "capabilities": "SupportsExtension" } ], "metadata": { @@ -60399,97 +61857,6 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationFree" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Communication", - "namespace": "Microsoft.Communication", - "authorizations": [ - { - "applicationId": "632ec9eb-fad7-4cbd-993a-e72973ba2acc", - "roleDefinitionId": "6c5c31b0-3a00-47ea-9555-f233670ba313" - } - ], - "resourceTypes": [ - { - "resourceType": "Locations", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "CommunicationServices", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "CommunicationServices/eventGridFilters", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "registeredSubscriptions", - "locations": [], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "defaultApiVersion": "2020-08-20-preview", - "capabilities": "None" - }, - { - "resourceType": "Locations/operationStatuses", - "locations": [ - "West US 2" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - }, - { - "resourceType": "CheckNameAvailability", - "locations": [ - "global" - ], - "apiVersions": [ - "2020-08-20-preview", - "2020-08-20" - ], - "capabilities": "None" - } - ], - "metadata": { - "onboardedVia": "ProviderHub" - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ConfidentialLedger", "namespace": "Microsoft.ConfidentialLedger", @@ -60508,6 +61875,7 @@ "global" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "metadata": { @@ -60521,9 +61889,11 @@ "resourceType": "Locations/operationstatuses", "locations": [ "East US 2 EUAP", - "East US" + "East US", + "South Central US" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "capabilities": "None" @@ -60531,10 +61901,11 @@ { "resourceType": "Ledgers", "locations": [ - "East US 2 EUAP", - "East US" + "East US", + "South Central US" ], "apiVersions": [ + "2021-05-13-preview", "2020-12-01-preview" ], "metadata": { @@ -60543,6 +61914,20 @@ } }, "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "checkNameAvailability", + "locations": [], + "apiVersions": [ + "2021-05-13-preview" + ], + "defaultApiVersion": "2021-05-13-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" } ], "metadata": { @@ -60651,20 +62036,7 @@ }, { "resourceType": "validations", - "locations": [ - "West US 2", - "West Central US", - "Australia East", - "France Central", - "Canada Central", - "East US", - "UK South", - "West Europe", - "Central US", - "East US 2", - "North Europe", - "Southeast Asia" - ], + "locations": [], "apiVersions": [ "2021-03-01-preview" ], @@ -61184,6 +62556,7 @@ "resourceType": "credits", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -61195,6 +62568,7 @@ "resourceType": "events", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -61206,6 +62580,7 @@ "resourceType": "lots", "locations": [], "apiVersions": [ + "2021-05-01", "2019-10-01", "2018-11-01-preview", "2018-10-01", @@ -62457,7 +63832,13 @@ } ], "metadata": { - "microsoft.insights": { + "Microsoft.ManagedIdentity": { + "applicationIds": [ + "38c77d00-5fcb-4cce-9d93-af4738258e3c", + "0bfc4568-a4ba-4c58-bd3e-5d3e76bd7fff" + ] + }, + "Microsoft.Insights": { "monitoringResourceProvider": { "version": "1.0", "apiVersions": { @@ -64560,7 +65941,12 @@ { "resourceType": "SqlMigrationServices", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -64571,7 +65957,12 @@ { "resourceType": "DatabaseMigrations", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -64582,7 +65973,12 @@ { "resourceType": "Locations/OperationTypes", "locations": [ - "East US 2" + "East US 2", + "East US", + "Canada Central", + "Central US", + "Canada East", + "West Europe" ], "apiVersions": [ "2020-09-01-preview" @@ -66780,6 +68176,12 @@ } ], "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "6ee392c4-d339-4083-b04d-6b7947c6cf78", + "delegationAppIds": [ + "6ee392c4-d339-4083-b04d-6b7947c6cf78" + ] + }, "onboardedVia": "ProviderHub" }, "registrationState": "NotRegistered", @@ -66829,80 +68231,6 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevSpaces", - "namespace": "Microsoft.DevSpaces", - "resourceTypes": [ - { - "resourceType": "controllers", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "controllers/listConnectionDetails", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2020-05-01", - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operationresults", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/checkContainerHostMapping", - "locations": [ - "East US 2" - ], - "apiVersions": [ - "2019-04-01" - ], - "capabilities": "None" - } - ], - "metadata": { - "Microsoft.ManagedIdentity": { - "applicationId": "eda7eafb-df85-4c80-a4bc-15a30dd106d5" - } - }, - "registrationState": "NotRegistered", - "registrationPolicy": "RegistrationRequired" - }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.DevTestLab", "namespace": "Microsoft.DevTestLab", @@ -67492,12 +68820,50 @@ "locations": [ "East US 2 EUAP", "Central US EUAP", + "West US 2", + "UK South", + "East US", + "East US 2", + "West Europe", + "France Central", + "Central US", + "South Central US" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "monitors", + "locations": [ + "West US 2", + "UK South" + ], + "apiVersions": [ + "2020-07-01-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "monitors/tagRules", + "locations": [ "West US 2", "UK South" ], "apiVersions": [ "2020-07-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "None" }, { @@ -67922,6 +69288,212 @@ "registrationState": "Registered", "registrationPolicy": "RegistrationFree" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Fidalgo", + "namespace": "Microsoft.Fidalgo", + "authorizations": [], + "resourceTypes": [ + { + "resourceType": "Locations", + "locations": [], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "Locations/OperationStatuses", + "locations": [ + "Central US EUAP", + "East US 2 EUAP", + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "devcenters", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2" + } + }, + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + }, + { + "resourceType": "devcenters/catalogs/items", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, + { + "resourceType": "projects/environments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "devcenters/catalogs", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "devcenters/mappings", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "capabilities": "None" + }, + { + "resourceType": "projects/CatalogItems", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "projects/environmentTypes", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "projects/environments/deployments", + "locations": [ + "West Central US", + "West US", + "Southeast Asia", + "West Europe" + ], + "apiVersions": [ + "2021-06-01-privatepreview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + } + ], + "metadata": { + "Microsoft.ManagedIdentity": { + "applicationId": "2dc3760b-4713-48b1-a383-1dfe3e449ec2" + }, + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.HanaOnAzure", "namespace": "Microsoft.HanaOnAzure", @@ -68131,7 +69703,6 @@ "North Europe", "Southeast Asia", "Australia East", - "East US 2 EUAP", "Central India", "West Central US" ], @@ -68417,6 +69988,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-03-31-preview", "2021-01-11", "2020-03-30", "2020-03-15", @@ -68499,6 +70071,9 @@ { "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" + }, + { + "applicationId": "eec53b1f-b9a4-4479-acf5-6b247c6a49f2" } ], "resourceTypes": [ @@ -68519,6 +70094,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68549,6 +70127,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68567,6 +70148,9 @@ "West Europe" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68596,6 +70180,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68625,6 +70212,9 @@ "UK South" ], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -68641,6 +70231,9 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-05-20", + "2021-05-17-preview", + "2021-04-22-preview", "2021-03-25-preview", "2021-01-28-preview", "2020-08-15-preview", @@ -69338,6 +70931,17 @@ ], "capabilities": "None" }, + { + "resourceType": "locations/deviceGroups/devices", + "locations": [ + "East US", + "West Europe" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "None" + }, { "resourceType": "sites", "locations": [ @@ -70648,6 +72252,11 @@ "apiVersions": [ "2020-10-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -70670,6 +72279,11 @@ "2020-10-01-preview" ], "defaultApiVersion": "2020-10-01-preview", + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -70677,7 +72291,8 @@ "locations": [ "Central US EUAP", "East US 2 EUAP", - "West US 2" + "West US 2", + "West Europe" ], "apiVersions": [ "2020-10-01-preview" @@ -70774,7 +72389,7 @@ "2018-03-01-preview" ], "defaultApiVersion": "2021-01-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "workspaces/onlineEndpoints", @@ -72345,9 +73960,10 @@ "United States" ], "apiVersions": [ + "2021-02-01", "2020-02-01-preview" ], - "defaultApiVersion": "2020-02-01-preview", + "defaultApiVersion": "2021-02-01", "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" }, { @@ -72378,8 +73994,8 @@ "monitoringResourceProvider": { "version": "1.0", "apiVersions": { - "default": "2018-05-01", - "operations": "2018-05-01" + "default": "2021-02-01", + "operations": "2021-02-01" }, "metrics": { "mdsInfo": [ @@ -72786,7 +74402,8 @@ "Korea Central", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-06-01-preview", @@ -72824,7 +74441,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-05-01-preview", @@ -73011,7 +74629,8 @@ "West Europe", "South Central US", "UK South", - "Southeast Asia" + "Southeast Asia", + "West US 2" ], "apiVersions": [ "2021-03-01-preview", @@ -73152,6 +74771,10 @@ "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.MobileNetwork", "namespace": "Microsoft.MobileNetwork", "authorizations": [ + { + "applicationId": "54b9b9be-c365-4548-95c6-d2f2011f48f4", + "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e" + }, { "applicationId": "b8ed041c-aa91-418e-8f47-20c70abc2de1", "roleDefinitionId": "b27fa4bc-5127-4625-b3e5-5fc5eddbc24e" @@ -73164,6 +74787,11 @@ "apiVersions": [ "2020-06-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -73182,6 +74810,11 @@ "apiVersions": [ "2020-06-01-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -73231,6 +74864,7 @@ "South India", "Southeast Asia", "UAE Central", + "UAE North", "UK South", "UK West", "West Central US", @@ -73242,6 +74876,7 @@ "South Central US (Stage)" ], "apiVersions": [ + "2021-04-01", "2021-02-01", "2020-12-01", "2020-11-01", @@ -73345,7 +74980,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-09-09-preview", @@ -73379,7 +75015,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-01-01", @@ -73410,7 +75047,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-09-09-preview", @@ -73441,7 +75079,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-02-01", @@ -73472,7 +75111,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-11-11-preview", @@ -73510,7 +75150,8 @@ "Korea South", "France Central", "Switzerland North", - "Australia East" + "Australia East", + "UAE North" ], "apiVersions": [ "2020-07-07" @@ -73575,6 +75216,11 @@ "apiVersions": [ "2020-06-23-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -74681,7 +76327,7 @@ "providerExtendsPreflight": false } }, - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" + "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" }, { "resourceType": "Operations", @@ -74799,6 +76445,20 @@ ], "capabilities": "None" }, + { + "resourceType": "accounts", + "locations": [ + "East US", + "West US", + "North Europe", + "West Europe", + "Southeast Asia" + ], + "apiVersions": [ + "2021-02-01-preview" + ], + "capabilities": "SupportsTags, SupportsLocation" + }, { "resourceType": "accounts/modeling", "locations": [ @@ -74905,6 +76565,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -74996,6 +76657,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-03-01", "2017-07-01", "2016-06-01" ], @@ -75043,9 +76705,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01", "2016-06-01" ], @@ -75093,6 +76757,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75142,6 +76807,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75191,6 +76857,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75240,9 +76907,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01" ], "apiProfiles": [ @@ -75289,9 +76958,11 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ + "2021-03-01", "2017-07-01" ], "apiProfiles": [ @@ -75338,6 +77009,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75388,6 +77060,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75438,6 +77111,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75488,6 +77162,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75538,6 +77213,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75588,6 +77264,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75638,6 +77315,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -75687,6 +77365,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -76569,7 +78248,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -76643,7 +78323,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -77424,6 +79105,75 @@ "registrationState": "NotRegistered", "registrationPolicy": "RegistrationRequired" }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Scom", + "namespace": "Microsoft.Scom", + "authorizations": [ + { + "applicationId": "d3315f6c-968a-40bb-94d2-a6a9503b05f5", + "roleDefinitionId": "a51caa68-288c-4fb0-87d2-a722d0910d90", + "managedByRoleDefinitionId": "2324acd9-7b7e-49d0-a2a8-e084c9adc580" + } + ], + "resourceTypes": [ + { + "resourceType": "locations/operationStatuses", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "capabilities": "None" + }, + { + "resourceType": "operations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "locations", + "locations": [], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "managedInstances", + "locations": [ + "East US 2 EUAP" + ], + "apiVersions": [ + "2021-06-30-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "SupportsTags, SupportsLocation" + } + ], + "metadata": { + "onboardedVia": "ProviderHub" + }, + "registrationState": "NotRegistered", + "registrationPolicy": "RegistrationRequired" + }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.ScVmm", "namespace": "Microsoft.ScVmm", @@ -77473,14 +79223,21 @@ { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Search", "namespace": "Microsoft.Search", - "authorization": { - "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", - "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" - }, + "authorizations": [ + { + "applicationId": "408992c7-2af6-4ff1-92e3-65b73d2b5092", + "roleDefinitionId": "20FA3191-87CF-4C3D-9510-74CCB594A310" + }, + { + "applicationId": "880da380-985e-4198-81b9-e05b1cc53158", + "roleDefinitionId": "d2e67903-baaa-4696-926b-61ab86235aaf" + } + ], "resourceTypes": [ { "resourceType": "searchServices", "locations": [ + "Jio India West", "West US 3", "Germany West Central", "Norway East", @@ -77512,6 +79269,7 @@ "UAE North" ], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77535,6 +79293,7 @@ "resourceType": "checkNameAvailability", "locations": [], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77546,6 +79305,7 @@ { "resourceType": "resourceHealthMetadata", "locations": [ + "Jio India West", "West US 3", "Germany West Central", "Norway East", @@ -77577,6 +79337,7 @@ "UAE North" ], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77589,6 +79350,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01-Preview", "2020-08-01-Preview", "2020-08-01", "2020-03-13", @@ -77739,6 +79501,7 @@ "resourceType": "operations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" @@ -77757,6 +79520,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77778,6 +79542,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77799,6 +79564,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77818,6 +79584,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77838,6 +79605,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77859,6 +79627,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77878,6 +79647,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77897,6 +79667,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77916,9 +79687,11 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ + "2021-04-01", "2021-03-01-preview", "2020-01-01", "2019-01-01-preview" @@ -77937,6 +79710,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77956,6 +79730,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77976,6 +79751,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -77995,6 +79771,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78015,6 +79792,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78035,6 +79813,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78054,6 +79833,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78061,6 +79841,46 @@ ], "capabilities": "SupportsExtension" }, + { + "resourceType": "sourceControls", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "listrepositories", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, { "resourceType": "watchlists", "locations": [ @@ -78073,6 +79893,7 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78093,6 +79914,27 @@ "Switzerland North", "Switzerland West", "Norway East", + "Norway West", + "Germany West Central" + ], + "apiVersions": [ + "2021-03-01-preview" + ], + "capabilities": "SupportsExtension" + }, + { + "resourceType": "metadata", + "locations": [ + "West Europe", + "North Europe", + "France Central", + "UK South", + "UK West", + "France South", + "Switzerland North", + "Switzerland West", + "Norway East", + "Norway West", "Germany West Central" ], "apiVersions": [ @@ -78234,6 +80076,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78291,6 +80134,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78371,6 +80215,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78432,6 +80277,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78493,6 +80339,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78554,6 +80401,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78641,6 +80489,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78686,6 +80535,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78731,6 +80581,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78775,6 +80626,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78819,6 +80671,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78863,6 +80716,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78907,6 +80761,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78952,6 +80807,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -78997,6 +80853,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -79042,6 +80899,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -79097,6 +80955,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79160,6 +81019,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79198,6 +81058,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79236,6 +81097,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79274,6 +81136,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79321,6 +81184,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79359,6 +81223,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79397,6 +81262,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79435,6 +81301,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79473,6 +81340,7 @@ "North Central US", "Switzerland West", "Canada East", + "Japan West", "Australia Southeast", "Central India", "Norway East", @@ -79540,6 +81408,11 @@ "apiVersions": [ "2021-01-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" }, { @@ -79560,6 +81433,11 @@ "apiVersions": [ "2021-01-01-privatepreview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, "capabilities": "None" } ], @@ -79738,7 +81616,22 @@ "apiVersions": [ "2020-12-01-preview" ], - "capabilities": "None" + "capabilities": "SystemAssignedResourceIdentity" + }, + { + "resourceType": "accounts/models", + "locations": [ + "Central US", + "South Central US", + "West Europe", + "West US 2", + "East US" + ], + "apiVersions": [ + "2020-12-01-preview" + ], + "defaultApiVersion": "2020-12-01-preview", + "capabilities": "SystemAssignedResourceIdentity" }, { "resourceType": "locations", @@ -79995,7 +81888,10 @@ ], "metadata": { "Microsoft.ManagedIdentity": { - "applicationId": "349e15d0-1c96-4829-95e5-7fc8fb358ff3" + "applicationIds": [ + "349e15d0-1c96-4829-95e5-7fc8fb358ff3", + "9581bc0e-c952-4fd3-8d99-e777877718b1" + ] } }, "registrationState": "NotRegistered", @@ -80079,6 +81975,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80130,6 +82027,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80198,6 +82096,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80243,6 +82142,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -80330,7 +82230,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80376,7 +82277,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80422,7 +82324,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80468,7 +82371,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80514,7 +82418,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80560,7 +82465,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80606,7 +82512,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80652,7 +82559,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80698,7 +82606,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -80744,7 +82653,8 @@ "West Europe", "West India", "West US", - "West US 2" + "West US 2", + "West US 3" ], "apiVersions": [ "2017-03-01-preview" @@ -83143,7 +85053,8 @@ { "resourceType": "locations/operationstatuses", "locations": [ - "East US 2 EUAP" + "East US 2 EUAP", + "West US" ], "apiVersions": [ "2020-12-16-preview" @@ -83171,6 +85082,206 @@ "apiVersions": [ "2020-12-16-preview" ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/usages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/availableOSs", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testTypes", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/flightingRings", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" + }, + { + "resourceType": "testBaseAccounts/packages/osUpdates", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/testSummaries", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/favoriteProcesses", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/packages/testResults/analysisResults", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/emailEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": true + } + }, + "capabilities": "None" + }, + { + "resourceType": "testBaseAccounts/customerEvents", + "locations": [ + "global" + ], + "apiVersions": [ + "2020-12-16-preview" + ], + "metadata": { + "providerHubMetadata": { + "providerExtendsPreflight": false + } + }, "capabilities": "None" } ], @@ -83456,8 +85567,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83477,8 +85593,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83496,9 +85617,9 @@ "West Central US", "West US", "West US 2", + "South Central US", "North Europe", "West Europe", - "South Central US", "UK South", "UK West", "Southeast Asia", @@ -83522,8 +85643,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", @@ -83542,8 +85668,13 @@ "West US", "West US 2", "South Central US", + "North Europe", "West Europe", - "North Europe" + "Southeast Asia", + "UK South", + "UK West", + "Australia East", + "Australia Southeast" ], "apiVersions": [ "2020-02-14", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json index 360ca663124f..84d6211ad5b2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources().json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d45b552710b2294b9b70eb6747e605f7-8af2d1b4709f9640-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7eee7d2375e5548e54041570939466ef", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:02 GMT", + "Date": "Wed, 16 Jun 2021 00:16:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88950d0d-dbc1-49cb-a0f3-858b61b94cf1", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "88950d0d-dbc1-49cb-a0f3-858b61b94cf1", - "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:88950d0d-dbc1-49cb-a0f3-858b61b94cf1" + "x-ms-correlation-request-id": "68468675-82a1-41c8-b809-5bfe18f4d021", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "68468675-82a1-41c8-b809-5bfe18f4d021", + "x-ms-routing-request-id": "WESTUS2:20210616T001621Z:68468675-82a1-41c8-b809-5bfe18f4d021" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b6a74dd1b18df64f89ec9ab979c1cde7-2c31d94b93fc8b42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2285c1c16ee16b40960232d1c84476fa-033b6aa3e67e7547-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "345486e57f5f7f6b4d52c8186e2c9aa3", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e879c34-c8cf-454b-b8b5-78b24b00086a", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "6e879c34-c8cf-454b-b8b5-78b24b00086a", - "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:6e879c34-c8cf-454b-b8b5-78b24b00086a" + "x-ms-correlation-request-id": "fdfc26a6-11d1-47b5-8c27-f126c0963fa8", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "fdfc26a6-11d1-47b5-8c27-f126c0963fa8", + "x-ms-routing-request-id": "WESTUS2:20210616T001622Z:fdfc26a6-11d1-47b5-8c27-f126c0963fa8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-e4b935e9a21c624baef6f5b4f2487f23-50e76da69d46c24d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6b76dfcd5f563f4dad124319ee42d4f7-637783e45bba8643-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e83f855bfb4ad43c1ed692b15d533c0", "x-ms-return-client-request-id": "true" }, @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4426bd80-76be-4b26-9112-cc242889ea99", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "4426bd80-76be-4b26-9112-cc242889ea99", - "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:4426bd80-76be-4b26-9112-cc242889ea99" + "x-ms-correlation-request-id": "bc838734-bb35-49f9-972a-3d28d06e60fd", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "bc838734-bb35-49f9-972a-3d28d06e60fd", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:bc838734-bb35-49f9-972a-3d28d06e60fd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789", @@ -134,6 +137,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-e72c24123045c04189163e82f17234e8-133a63c917399d41-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6347c99bfec3ff829823c53be5d77acc", "x-ms-return-client-request-id": "true" @@ -142,17 +146,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52071cdd-db43-49f7-a175-d63738250f0c", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "52071cdd-db43-49f7-a175-d63738250f0c", - "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:52071cdd-db43-49f7-a175-d63738250f0c" + "x-ms-correlation-request-id": "8dc3d5f3-979d-422a-b6a9-b1c111be70ae", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "8dc3d5f3-979d-422a-b6a9-b1c111be70ae", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:8dc3d5f3-979d-422a-b6a9-b1c111be70ae" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -232,9 +236,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -305,9 +311,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -473,6 +481,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -520,9 +536,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -593,9 +611,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -762,6 +782,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -809,9 +837,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -883,9 +913,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -957,9 +989,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1030,9 +1064,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1105,9 +1141,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1180,9 +1218,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1211,6 +1251,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1266,9 +1307,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1339,9 +1382,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1411,9 +1456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1474,9 +1521,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1546,9 +1595,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1611,9 +1662,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1676,9 +1729,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1749,9 +1804,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1814,7 +1871,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1857,9 +1915,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1911,9 +1971,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1964,9 +2026,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2016,9 +2080,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2063,6 +2129,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2106,9 +2173,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2152,9 +2221,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2198,9 +2269,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2384,9 +2457,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2432,9 +2507,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2480,9 +2557,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2528,9 +2607,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2576,9 +2657,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2624,9 +2707,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2784,6 +2869,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2831,9 +2924,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2896,9 +2991,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2960,9 +3057,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3009,9 +3108,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3056,7 +3157,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3196,6 +3298,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3243,7 +3353,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3288,7 +3399,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3333,7 +3445,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3377,7 +3490,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3421,7 +3535,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3465,7 +3580,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3509,7 +3625,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3553,7 +3670,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3597,9 +3715,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3663,9 +3783,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3715,9 +3837,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3860,6 +3984,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3907,9 +4039,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4052,6 +4186,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4069,14 +4211,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829/providers/Microsoft.Compute/availabilitySets/test-aset1315?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829/providers/Microsoft.Compute/availabilitySets/test-aset1315?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e72c24123045c04189163e82f17234e8-2792e10e6e0dd34c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b6d3e6c314d10c7869d920254377c95", "x-ms-return-client-request-id": "true" }, @@ -4096,7 +4239,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4106,11 +4249,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6b6d3e6c314d10c7869d920254377c95", - "x-ms-correlation-request-id": "82d8c1a0-3612-47d6-9578-64320c766338", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "4ac9e745-7ba3-4849-be7c-8438f022f44b", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:82d8c1a0-3612-47d6-9578-64320c766338" + "x-ms-correlation-request-id": "ce7d1c6e-f0eb-4c20-8dc8-ee35dc0776ae", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1064", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "37e5d905-3233-4972-b036-4613cff6a6e0", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:ce7d1c6e-f0eb-4c20-8dc8-ee35dc0776ae" }, "ResponseBody": [ "{\r\n", @@ -4135,7 +4278,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "96a85eee55c669b30136dd266c80ab60", "x-ms-return-client-request-id": "true" }, @@ -4145,15 +4288,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:d4c85809-71eb-4cf6-855c-3f7fa3dc6e5d" + "x-ms-correlation-request-id": "91748cee-8c6e-4694-a9bc-9bc469f80edc", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "91748cee-8c6e-4694-a9bc-9bc469f80edc", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:91748cee-8c6e-4694-a9bc-9bc469f80edc" }, "ResponseBody": { "value": [ @@ -4176,7 +4319,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78e330a6a946a871ac736a1e162a9314", "x-ms-return-client-request-id": "true" }, @@ -4186,15 +4329,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f6b64c1-4ef0-4c90-b9d0-fefa790b126e", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "2f6b64c1-4ef0-4c90-b9d0-fefa790b126e", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:2f6b64c1-4ef0-4c90-b9d0-fefa790b126e" + "x-ms-correlation-request-id": "2ca3948b-e57e-4607-a8fe-fe01426b05bf", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "2ca3948b-e57e-4607-a8fe-fe01426b05bf", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:2ca3948b-e57e-4607-a8fe-fe01426b05bf" }, "ResponseBody": { "value": [] @@ -4208,7 +4351,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6137cc2e58e02cfba27cf25e66b8d80", "x-ms-return-client-request-id": "true" }, @@ -4222,17 +4365,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0af02ae0-9a56-429b-adfc-820cd1429ea1", + "x-ms-correlation-request-id": "ba725075-a5b8-49f4-afcc-95d45496484d", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "0af02ae0-9a56-429b-adfc-820cd1429ea1", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:0af02ae0-9a56-429b-adfc-820cd1429ea1" + "x-ms-request-id": "ba725075-a5b8-49f4-afcc-95d45496484d", + "x-ms-routing-request-id": "WESTUS2:20210616T001624Z:ba725075-a5b8-49f4-afcc-95d45496484d" }, "ResponseBody": [] }, @@ -4241,7 +4384,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef63c8a3b56cc0d161e0bd1fd94bc240", "x-ms-return-client-request-id": "true" }, @@ -4250,17 +4393,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "063cde24-f3fd-47c8-9fa9-2f86647b642a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "063cde24-f3fd-47c8-9fa9-2f86647b642a", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:063cde24-f3fd-47c8-9fa9-2f86647b642a" + "x-ms-correlation-request-id": "1fe0927a-c5cf-44bb-bb4e-296964122034", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "1fe0927a-c5cf-44bb-bb4e-296964122034", + "x-ms-routing-request-id": "WESTUS2:20210616T001624Z:1fe0927a-c5cf-44bb-bb4e-296964122034" }, "ResponseBody": [] }, @@ -4269,7 +4412,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c9aeae546355f86aece088ffb7c1826", "x-ms-return-client-request-id": "true" }, @@ -4278,17 +4421,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:05 GMT", + "Date": "Wed, 16 Jun 2021 00:16:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4ffefed8-1d96-4c53-9567-8e8afcdcef80", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "4ffefed8-1d96-4c53-9567-8e8afcdcef80", - "x-ms-routing-request-id": "WESTUS2:20210519T185205Z:4ffefed8-1d96-4c53-9567-8e8afcdcef80" + "x-ms-correlation-request-id": "2601b5b9-5b42-477b-88fa-3bddf8086f3b", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "2601b5b9-5b42-477b-88fa-3bddf8086f3b", + "x-ms-routing-request-id": "WESTUS2:20210616T001625Z:2601b5b9-5b42-477b-88fa-3bddf8086f3b" }, "ResponseBody": [] }, @@ -4297,7 +4440,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d81f8d49e08ce13e834ebada5ae6ba1", "x-ms-return-client-request-id": "true" }, @@ -4306,17 +4449,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:06 GMT", + "Date": "Wed, 16 Jun 2021 00:16:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "57a3ee1f-19e1-40ab-8287-9da2cbcf10d2", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "57a3ee1f-19e1-40ab-8287-9da2cbcf10d2", - "x-ms-routing-request-id": "WESTUS2:20210519T185206Z:57a3ee1f-19e1-40ab-8287-9da2cbcf10d2" + "x-ms-correlation-request-id": "2929b67d-29be-4927-ae81-254af66ca63a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "2929b67d-29be-4927-ae81-254af66ca63a", + "x-ms-routing-request-id": "WESTUS2:20210616T001626Z:2929b67d-29be-4927-ae81-254af66ca63a" }, "ResponseBody": [] }, @@ -4325,7 +4468,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff6da93df7f95ca24204419dac42c5e5", "x-ms-return-client-request-id": "true" }, @@ -4334,17 +4477,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:07 GMT", + "Date": "Wed, 16 Jun 2021 00:16:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "111b10bf-64b7-402d-9c60-35e0d025ae39", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "111b10bf-64b7-402d-9c60-35e0d025ae39", - "x-ms-routing-request-id": "WESTUS2:20210519T185207Z:111b10bf-64b7-402d-9c60-35e0d025ae39" + "x-ms-correlation-request-id": "e726973b-2511-4658-8be7-c99e06149af1", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "e726973b-2511-4658-8be7-c99e06149af1", + "x-ms-routing-request-id": "WESTUS2:20210616T001627Z:e726973b-2511-4658-8be7-c99e06149af1" }, "ResponseBody": [] }, @@ -4353,7 +4496,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e04b97c8a4c94738d7cc73005bd9b9ff", "x-ms-return-client-request-id": "true" }, @@ -4362,17 +4505,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:08 GMT", + "Date": "Wed, 16 Jun 2021 00:16:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4fc991ed-ce7e-4e1a-a246-1511af7b5be7", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "4fc991ed-ce7e-4e1a-a246-1511af7b5be7", - "x-ms-routing-request-id": "WESTUS2:20210519T185208Z:4fc991ed-ce7e-4e1a-a246-1511af7b5be7" + "x-ms-correlation-request-id": "ea76d4a2-38be-442c-833a-31be9280312a", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "ea76d4a2-38be-442c-833a-31be9280312a", + "x-ms-routing-request-id": "WESTUS2:20210616T001628Z:ea76d4a2-38be-442c-833a-31be9280312a" }, "ResponseBody": [] }, @@ -4381,7 +4524,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52516762190fdd2c5625db035c7522a5", "x-ms-return-client-request-id": "true" }, @@ -4390,17 +4533,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:09 GMT", + "Date": "Wed, 16 Jun 2021 00:16:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cd84ca26-7807-42fb-bbe4-83f9053be625", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "cd84ca26-7807-42fb-bbe4-83f9053be625", - "x-ms-routing-request-id": "WESTUS2:20210519T185209Z:cd84ca26-7807-42fb-bbe4-83f9053be625" + "x-ms-correlation-request-id": "f601f50d-49da-4af5-9fd8-553811b367cf", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "f601f50d-49da-4af5-9fd8-553811b367cf", + "x-ms-routing-request-id": "WESTUS2:20210616T001629Z:f601f50d-49da-4af5-9fd8-553811b367cf" }, "ResponseBody": [] }, @@ -4409,7 +4552,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ee5056f8b6398d77025282d83a10168", "x-ms-return-client-request-id": "true" }, @@ -4418,17 +4561,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:10 GMT", + "Date": "Wed, 16 Jun 2021 00:16:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e", - "x-ms-routing-request-id": "WESTUS2:20210519T185210Z:ccbf06fd-d8e4-4ea9-b735-6b9a4e84d59e" + "x-ms-correlation-request-id": "8c20d341-a75a-40a8-bdd9-b418e6f15f32", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "8c20d341-a75a-40a8-bdd9-b418e6f15f32", + "x-ms-routing-request-id": "WESTUS2:20210616T001630Z:8c20d341-a75a-40a8-bdd9-b418e6f15f32" }, "ResponseBody": [] }, @@ -4437,7 +4580,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "443b424b73f1afd66b6d8aa4c935eb61", "x-ms-return-client-request-id": "true" }, @@ -4446,17 +4589,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:11 GMT", + "Date": "Wed, 16 Jun 2021 00:16:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7644b12f-cae5-442b-9630-daef7e9c86a5", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "7644b12f-cae5-442b-9630-daef7e9c86a5", - "x-ms-routing-request-id": "WESTUS2:20210519T185211Z:7644b12f-cae5-442b-9630-daef7e9c86a5" + "x-ms-correlation-request-id": "87b8fffc-501e-4f16-a879-a4b2fd744cbd", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "87b8fffc-501e-4f16-a879-a4b2fd744cbd", + "x-ms-routing-request-id": "WESTUS2:20210616T001631Z:87b8fffc-501e-4f16-a879-a4b2fd744cbd" }, "ResponseBody": [] }, @@ -4465,7 +4608,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5591cea9aaf4d79b90b9e1e9f0fe59b4", "x-ms-return-client-request-id": "true" }, @@ -4474,17 +4617,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:12 GMT", + "Date": "Wed, 16 Jun 2021 00:16:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d6cc90d3-2369-4fb3-900d-edb490a94916", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "d6cc90d3-2369-4fb3-900d-edb490a94916", - "x-ms-routing-request-id": "WESTUS2:20210519T185212Z:d6cc90d3-2369-4fb3-900d-edb490a94916" + "x-ms-correlation-request-id": "2180f2d0-b3cb-47ed-b35a-ed98a69c2875", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "2180f2d0-b3cb-47ed-b35a-ed98a69c2875", + "x-ms-routing-request-id": "WESTUS2:20210616T001632Z:2180f2d0-b3cb-47ed-b35a-ed98a69c2875" }, "ResponseBody": [] }, @@ -4493,7 +4636,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19b77223dd3afcb42f35a3f50132ce3b", "x-ms-return-client-request-id": "true" }, @@ -4502,17 +4645,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:13 GMT", + "Date": "Wed, 16 Jun 2021 00:16:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bfe473c1-35e8-4d41-b2dd-3671a10ba0e3", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "bfe473c1-35e8-4d41-b2dd-3671a10ba0e3", - "x-ms-routing-request-id": "WESTUS2:20210519T185213Z:bfe473c1-35e8-4d41-b2dd-3671a10ba0e3" + "x-ms-correlation-request-id": "2a5376e8-be62-44dc-b2db-fec94d7f1201", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "2a5376e8-be62-44dc-b2db-fec94d7f1201", + "x-ms-routing-request-id": "WESTUS2:20210616T001633Z:2a5376e8-be62-44dc-b2db-fec94d7f1201" }, "ResponseBody": [] }, @@ -4521,7 +4664,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b584c73aac10a074a763b43791ecbe6c", "x-ms-return-client-request-id": "true" }, @@ -4530,17 +4673,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:14 GMT", + "Date": "Wed, 16 Jun 2021 00:16:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0a24cf6b-6622-4e35-bba5-9ed9fb27a197", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "0a24cf6b-6622-4e35-bba5-9ed9fb27a197", - "x-ms-routing-request-id": "WESTUS2:20210519T185214Z:0a24cf6b-6622-4e35-bba5-9ed9fb27a197" + "x-ms-correlation-request-id": "4a779c17-7f88-4c0c-a8de-f5f230907213", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "4a779c17-7f88-4c0c-a8de-f5f230907213", + "x-ms-routing-request-id": "WESTUS2:20210616T001634Z:4a779c17-7f88-4c0c-a8de-f5f230907213" }, "ResponseBody": [] }, @@ -4549,7 +4692,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5681d514d17dcb26199525be07a5d65e", "x-ms-return-client-request-id": "true" }, @@ -4558,17 +4701,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:15 GMT", + "Date": "Wed, 16 Jun 2021 00:16:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c2c3aae2-961d-49ed-97c6-19ae0beed52a", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "c2c3aae2-961d-49ed-97c6-19ae0beed52a", - "x-ms-routing-request-id": "WESTUS2:20210519T185215Z:c2c3aae2-961d-49ed-97c6-19ae0beed52a" + "x-ms-correlation-request-id": "de21bb93-764c-4108-8225-837604c6b525", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "de21bb93-764c-4108-8225-837604c6b525", + "x-ms-routing-request-id": "WESTUS2:20210616T001635Z:de21bb93-764c-4108-8225-837604c6b525" }, "ResponseBody": [] }, @@ -4577,7 +4720,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29aea6eaa47a77a4fe1772d7297d6a42", "x-ms-return-client-request-id": "true" }, @@ -4586,17 +4729,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:16 GMT", + "Date": "Wed, 16 Jun 2021 00:16:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a85f9420-2df8-435c-8016-45a3f86be256", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "a85f9420-2df8-435c-8016-45a3f86be256", - "x-ms-routing-request-id": "WESTUS2:20210519T185216Z:a85f9420-2df8-435c-8016-45a3f86be256" + "x-ms-correlation-request-id": "dae1c82e-16eb-4e62-ab88-e89b814e7ee9", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "dae1c82e-16eb-4e62-ab88-e89b814e7ee9", + "x-ms-routing-request-id": "WESTUS2:20210616T001636Z:dae1c82e-16eb-4e62-ab88-e89b814e7ee9" }, "ResponseBody": [] }, @@ -4605,7 +4748,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ce1367778b069bda0b89c7b86b69901", "x-ms-return-client-request-id": "true" }, @@ -4614,17 +4757,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:17 GMT", + "Date": "Wed, 16 Jun 2021 00:16:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7926d536-1095-4b9c-a836-bff8dd72c694", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "7926d536-1095-4b9c-a836-bff8dd72c694", - "x-ms-routing-request-id": "WESTUS2:20210519T185217Z:7926d536-1095-4b9c-a836-bff8dd72c694" + "x-ms-correlation-request-id": "f278ac83-37fc-4674-a5d3-56111f399ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "f278ac83-37fc-4674-a5d3-56111f399ff4", + "x-ms-routing-request-id": "WESTUS2:20210616T001637Z:f278ac83-37fc-4674-a5d3-56111f399ff4" }, "ResponseBody": [] }, @@ -4633,7 +4776,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb4c558d943e6ff2300a58665e4fa29c", "x-ms-return-client-request-id": "true" }, @@ -4642,17 +4785,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:18 GMT", + "Date": "Wed, 16 Jun 2021 00:16:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "880fe1fa-4663-44e6-9ebc-3c46b94916c0", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "880fe1fa-4663-44e6-9ebc-3c46b94916c0", - "x-ms-routing-request-id": "WESTUS2:20210519T185218Z:880fe1fa-4663-44e6-9ebc-3c46b94916c0" + "x-ms-correlation-request-id": "cc211a31-37cd-4f52-820f-06135fd89075", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "cc211a31-37cd-4f52-820f-06135fd89075", + "x-ms-routing-request-id": "WESTUS2:20210616T001638Z:cc211a31-37cd-4f52-820f-06135fd89075" }, "ResponseBody": [] }, @@ -4661,7 +4804,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d046e32aaac472ade84489c20828f147", "x-ms-return-client-request-id": "true" }, @@ -4670,17 +4813,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:19 GMT", + "Date": "Wed, 16 Jun 2021 00:16:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0", - "x-ms-routing-request-id": "WESTUS2:20210519T185219Z:c961b6ea-dd6b-41ea-8cd5-a6a0b1da75c0" + "x-ms-correlation-request-id": "abaf9352-53c5-4a3e-83b8-57ae076c4696", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "abaf9352-53c5-4a3e-83b8-57ae076c4696", + "x-ms-routing-request-id": "WESTUS2:20210616T001639Z:abaf9352-53c5-4a3e-83b8-57ae076c4696" }, "ResponseBody": [] }, @@ -4689,7 +4832,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d349717e7e30e3044471fba61f570b50", "x-ms-return-client-request-id": "true" }, @@ -4698,17 +4841,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:20 GMT", + "Date": "Wed, 16 Jun 2021 00:16:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c4830692-fb69-49e4-94bf-40c37e625bdd", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "c4830692-fb69-49e4-94bf-40c37e625bdd", - "x-ms-routing-request-id": "WESTUS2:20210519T185220Z:c4830692-fb69-49e4-94bf-40c37e625bdd" + "x-ms-correlation-request-id": "eef2fb9b-5b82-4191-9e67-30c7a906b244", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "eef2fb9b-5b82-4191-9e67-30c7a906b244", + "x-ms-routing-request-id": "WESTUS2:20210616T001641Z:eef2fb9b-5b82-4191-9e67-30c7a906b244" }, "ResponseBody": [] }, @@ -4717,7 +4860,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a350ff16c86fe23da8da03f90b306707", "x-ms-return-client-request-id": "true" }, @@ -4726,17 +4869,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:21 GMT", + "Date": "Wed, 16 Jun 2021 00:16:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1b844037-56af-4ee3-a895-9bf240bc4a07", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "1b844037-56af-4ee3-a895-9bf240bc4a07", - "x-ms-routing-request-id": "WESTUS2:20210519T185221Z:1b844037-56af-4ee3-a895-9bf240bc4a07" + "x-ms-correlation-request-id": "242e5c12-9625-46e0-8dda-be7124375233", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "242e5c12-9625-46e0-8dda-be7124375233", + "x-ms-routing-request-id": "WESTUS2:20210616T001642Z:242e5c12-9625-46e0-8dda-be7124375233" }, "ResponseBody": [] }, @@ -4745,7 +4888,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ece81018ce05ac6bde638c52af065290", "x-ms-return-client-request-id": "true" }, @@ -4754,17 +4897,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:22 GMT", + "Date": "Wed, 16 Jun 2021 00:16:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0e2e663f-c7a7-48aa-b789-d37a55183a46", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "0e2e663f-c7a7-48aa-b789-d37a55183a46", - "x-ms-routing-request-id": "WESTUS2:20210519T185223Z:0e2e663f-c7a7-48aa-b789-d37a55183a46" + "x-ms-correlation-request-id": "6c4bf4a3-b04c-4f37-b680-0381f2de463b", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "6c4bf4a3-b04c-4f37-b680-0381f2de463b", + "x-ms-routing-request-id": "WESTUS2:20210616T001643Z:6c4bf4a3-b04c-4f37-b680-0381f2de463b" }, "ResponseBody": [] }, @@ -4773,7 +4916,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08ab38394ed8b5d734672b567a0bd713", "x-ms-return-client-request-id": "true" }, @@ -4782,17 +4925,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:23 GMT", + "Date": "Wed, 16 Jun 2021 00:16:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a22c4f71-a503-408b-ad43-5b52b462258a", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "a22c4f71-a503-408b-ad43-5b52b462258a", - "x-ms-routing-request-id": "WESTUS2:20210519T185224Z:a22c4f71-a503-408b-ad43-5b52b462258a" + "x-ms-correlation-request-id": "ea607c98-6a43-4da4-83a1-738d92e66f99", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "ea607c98-6a43-4da4-83a1-738d92e66f99", + "x-ms-routing-request-id": "WESTUS2:20210616T001644Z:ea607c98-6a43-4da4-83a1-738d92e66f99" }, "ResponseBody": [] }, @@ -4801,7 +4944,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0f8ef3091e6f474b93a4c40c3bea33a2", "x-ms-return-client-request-id": "true" }, @@ -4810,17 +4953,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:24 GMT", + "Date": "Wed, 16 Jun 2021 00:16:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "61b0c571-88dd-4c81-abba-dda0ad044ec9", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "61b0c571-88dd-4c81-abba-dda0ad044ec9", - "x-ms-routing-request-id": "WESTUS2:20210519T185225Z:61b0c571-88dd-4c81-abba-dda0ad044ec9" + "x-ms-correlation-request-id": "feb75d99-846a-45e5-b85e-5f388b924482", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "feb75d99-846a-45e5-b85e-5f388b924482", + "x-ms-routing-request-id": "WESTUS2:20210616T001645Z:feb75d99-846a-45e5-b85e-5f388b924482" }, "ResponseBody": [] }, @@ -4829,7 +4972,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2bf73875f84ca2f3932b89ea21531d2", "x-ms-return-client-request-id": "true" }, @@ -4838,17 +4981,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:25 GMT", + "Date": "Wed, 16 Jun 2021 00:16:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3ed6087c-2937-4d19-a362-07eaebcd3079", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "3ed6087c-2937-4d19-a362-07eaebcd3079", - "x-ms-routing-request-id": "WESTUS2:20210519T185226Z:3ed6087c-2937-4d19-a362-07eaebcd3079" + "x-ms-correlation-request-id": "1851aa6d-7746-4fd6-a7bc-d49754bca151", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "1851aa6d-7746-4fd6-a7bc-d49754bca151", + "x-ms-routing-request-id": "WESTUS2:20210616T001646Z:1851aa6d-7746-4fd6-a7bc-d49754bca151" }, "ResponseBody": [] }, @@ -4857,7 +5000,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb48798b43781a21ed64743389cb7a49", "x-ms-return-client-request-id": "true" }, @@ -4866,17 +5009,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:26 GMT", + "Date": "Wed, 16 Jun 2021 00:16:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7742e8b2-09a9-4cd0-9b3b-4a644777a41c", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "7742e8b2-09a9-4cd0-9b3b-4a644777a41c", - "x-ms-routing-request-id": "WESTUS2:20210519T185227Z:7742e8b2-09a9-4cd0-9b3b-4a644777a41c" + "x-ms-correlation-request-id": "3858ba6a-b0db-4586-979a-c56505ff7a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "3858ba6a-b0db-4586-979a-c56505ff7a6c", + "x-ms-routing-request-id": "WESTUS2:20210616T001647Z:3858ba6a-b0db-4586-979a-c56505ff7a6c" }, "ResponseBody": [] }, @@ -4885,7 +5028,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07ce8833054baa8fc3c3d63c65aca47e", "x-ms-return-client-request-id": "true" }, @@ -4894,17 +5037,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:27 GMT", + "Date": "Wed, 16 Jun 2021 00:16:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c92a8110-ae5d-488f-a6f9-7e2d0986193d", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "c92a8110-ae5d-488f-a6f9-7e2d0986193d", - "x-ms-routing-request-id": "WESTUS2:20210519T185228Z:c92a8110-ae5d-488f-a6f9-7e2d0986193d" + "x-ms-correlation-request-id": "c2e33368-eb9f-4136-8c4b-0872ac7e9704", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "c2e33368-eb9f-4136-8c4b-0872ac7e9704", + "x-ms-routing-request-id": "WESTUS2:20210616T001648Z:c2e33368-eb9f-4136-8c4b-0872ac7e9704" }, "ResponseBody": [] }, @@ -4913,7 +5056,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c280f17378a1442a51a5e420eafb406d", "x-ms-return-client-request-id": "true" }, @@ -4922,17 +5065,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:28 GMT", + "Date": "Wed, 16 Jun 2021 00:16:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "88536f8d-028d-4ee0-a82d-059a2e46e1e7", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "88536f8d-028d-4ee0-a82d-059a2e46e1e7", - "x-ms-routing-request-id": "WESTUS2:20210519T185229Z:88536f8d-028d-4ee0-a82d-059a2e46e1e7" + "x-ms-correlation-request-id": "07da78bf-a6f7-4c5b-81d6-845f475c482d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "07da78bf-a6f7-4c5b-81d6-845f475c482d", + "x-ms-routing-request-id": "WESTUS2:20210616T001649Z:07da78bf-a6f7-4c5b-81d6-845f475c482d" }, "ResponseBody": [] }, @@ -4941,7 +5084,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a6b6fb729478587ea9ef7b46de4b440", "x-ms-return-client-request-id": "true" }, @@ -4950,17 +5093,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:29 GMT", + "Date": "Wed, 16 Jun 2021 00:16:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d8cfc378-9a37-44eb-a466-05dc3e449409", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "d8cfc378-9a37-44eb-a466-05dc3e449409", - "x-ms-routing-request-id": "WESTUS2:20210519T185230Z:d8cfc378-9a37-44eb-a466-05dc3e449409" + "x-ms-correlation-request-id": "11574a36-941d-4742-8be0-ab5a38626571", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "11574a36-941d-4742-8be0-ab5a38626571", + "x-ms-routing-request-id": "WESTUS2:20210616T001650Z:11574a36-941d-4742-8be0-ab5a38626571" }, "ResponseBody": [] }, @@ -4969,7 +5112,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97c0f6bfb84abaa75e89b5a6206ebfc7", "x-ms-return-client-request-id": "true" }, @@ -4978,17 +5121,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:30 GMT", + "Date": "Wed, 16 Jun 2021 00:16:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ec6b501c-8857-42ca-9e50-b3854971e4f3", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "ec6b501c-8857-42ca-9e50-b3854971e4f3", - "x-ms-routing-request-id": "WESTUS2:20210519T185231Z:ec6b501c-8857-42ca-9e50-b3854971e4f3" + "x-ms-correlation-request-id": "e4d2bce2-0571-4b75-8d19-5604f58ea44f", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e4d2bce2-0571-4b75-8d19-5604f58ea44f", + "x-ms-routing-request-id": "WESTUS2:20210616T001651Z:e4d2bce2-0571-4b75-8d19-5604f58ea44f" }, "ResponseBody": [] }, @@ -4997,7 +5140,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f68468828a4149366afad7038075d76d", "x-ms-return-client-request-id": "true" }, @@ -5006,17 +5149,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:31 GMT", + "Date": "Wed, 16 Jun 2021 00:16:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c6a71036-edcd-4a26-8216-cc7bcd434bfc", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "c6a71036-edcd-4a26-8216-cc7bcd434bfc", - "x-ms-routing-request-id": "WESTUS2:20210519T185232Z:c6a71036-edcd-4a26-8216-cc7bcd434bfc" + "x-ms-correlation-request-id": "08701278-1e1e-4ec2-8e09-fbb9232f30af", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "08701278-1e1e-4ec2-8e09-fbb9232f30af", + "x-ms-routing-request-id": "WESTUS2:20210616T001652Z:08701278-1e1e-4ec2-8e09-fbb9232f30af" }, "ResponseBody": [] }, @@ -5025,7 +5168,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f461a3f0a93bff23c7b0bbbe73e0657b", "x-ms-return-client-request-id": "true" }, @@ -5034,17 +5177,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:32 GMT", + "Date": "Wed, 16 Jun 2021 00:16:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1", - "x-ms-routing-request-id": "WESTUS2:20210519T185233Z:5d8ffc6c-7bed-46dc-bacf-f21ba95b7cb1" + "x-ms-correlation-request-id": "d2120336-0461-4eaf-9b70-7eed5beb65f6", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d2120336-0461-4eaf-9b70-7eed5beb65f6", + "x-ms-routing-request-id": "WESTUS2:20210616T001653Z:d2120336-0461-4eaf-9b70-7eed5beb65f6" }, "ResponseBody": [] }, @@ -5053,7 +5196,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "043130dfbe5f34ffbf772d4fe0a43ae8", "x-ms-return-client-request-id": "true" }, @@ -5062,17 +5205,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:33 GMT", + "Date": "Wed, 16 Jun 2021 00:16:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3813f225-fbcf-4c19-8c8b-5cc48817648a", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "3813f225-fbcf-4c19-8c8b-5cc48817648a", - "x-ms-routing-request-id": "WESTUS2:20210519T185234Z:3813f225-fbcf-4c19-8c8b-5cc48817648a" + "x-ms-correlation-request-id": "c4ea3b20-c9c4-4166-85d4-f50be321741f", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "c4ea3b20-c9c4-4166-85d4-f50be321741f", + "x-ms-routing-request-id": "WESTUS2:20210616T001654Z:c4ea3b20-c9c4-4166-85d4-f50be321741f" }, "ResponseBody": [] }, @@ -5081,7 +5224,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cb648b1ca0dd98c44852f90cf78d589", "x-ms-return-client-request-id": "true" }, @@ -5090,17 +5233,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:34 GMT", + "Date": "Wed, 16 Jun 2021 00:16:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20", - "x-ms-routing-request-id": "WESTUS2:20210519T185235Z:cc0b8a8a-4ad1-4214-ad28-1ecf0d66ff20" + "x-ms-correlation-request-id": "0a8bdde1-a6e7-49cc-8a25-8a387c8396c3", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "0a8bdde1-a6e7-49cc-8a25-8a387c8396c3", + "x-ms-routing-request-id": "WESTUS2:20210616T001655Z:0a8bdde1-a6e7-49cc-8a25-8a387c8396c3" }, "ResponseBody": [] }, @@ -5109,7 +5252,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "50245c95d244310da42c35c47bd41e22", "x-ms-return-client-request-id": "true" }, @@ -5118,17 +5261,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:35 GMT", + "Date": "Wed, 16 Jun 2021 00:16:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c95e6f45-d104-4684-afaf-2f5cdc57ef4c", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "c95e6f45-d104-4684-afaf-2f5cdc57ef4c", - "x-ms-routing-request-id": "WESTUS2:20210519T185236Z:c95e6f45-d104-4684-afaf-2f5cdc57ef4c" + "x-ms-correlation-request-id": "c59d13e5-a10c-4550-972d-5d4ee557c765", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "c59d13e5-a10c-4550-972d-5d4ee557c765", + "x-ms-routing-request-id": "WESTUS2:20210616T001656Z:c59d13e5-a10c-4550-972d-5d4ee557c765" }, "ResponseBody": [] }, @@ -5137,7 +5280,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2b0cd275e82a146da357c0d98e6e6447", "x-ms-return-client-request-id": "true" }, @@ -5146,17 +5289,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:36 GMT", + "Date": "Wed, 16 Jun 2021 00:16:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "912f92d1-7b33-40d0-ae65-a9ed18eb0794", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "912f92d1-7b33-40d0-ae65-a9ed18eb0794", - "x-ms-routing-request-id": "WESTUS2:20210519T185237Z:912f92d1-7b33-40d0-ae65-a9ed18eb0794" + "x-ms-correlation-request-id": "6669406c-84ce-4b60-8f07-29e60273401a", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "6669406c-84ce-4b60-8f07-29e60273401a", + "x-ms-routing-request-id": "WESTUS2:20210616T001657Z:6669406c-84ce-4b60-8f07-29e60273401a" }, "ResponseBody": [] }, @@ -5165,7 +5308,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83b9a3a1ea80dea43a84d8e095c85e70", "x-ms-return-client-request-id": "true" }, @@ -5174,17 +5317,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:37 GMT", + "Date": "Wed, 16 Jun 2021 00:16:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "acb3016e-1051-4bd1-b7cf-ac2c03533617", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "acb3016e-1051-4bd1-b7cf-ac2c03533617", - "x-ms-routing-request-id": "WESTUS2:20210519T185238Z:acb3016e-1051-4bd1-b7cf-ac2c03533617" + "x-ms-correlation-request-id": "d63a3cdc-753c-4c57-966f-a7f16da2803b", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "d63a3cdc-753c-4c57-966f-a7f16da2803b", + "x-ms-routing-request-id": "WESTUS2:20210616T001658Z:d63a3cdc-753c-4c57-966f-a7f16da2803b" }, "ResponseBody": [] }, @@ -5193,7 +5336,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd1a0d66aa6bac5eef0facec1233a335", "x-ms-return-client-request-id": "true" }, @@ -5202,17 +5345,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:38 GMT", + "Date": "Wed, 16 Jun 2021 00:16:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41", - "x-ms-routing-request-id": "WESTUS2:20210519T185239Z:74be0a39-a1a6-4f50-a8f6-bc6ebbe73c41" + "x-ms-correlation-request-id": "14973857-2ba8-464b-975b-a3b1a44b955d", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "14973857-2ba8-464b-975b-a3b1a44b955d", + "x-ms-routing-request-id": "WESTUS2:20210616T001659Z:14973857-2ba8-464b-975b-a3b1a44b955d" }, "ResponseBody": [] }, @@ -5221,7 +5364,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d722eec89a1a8ba12e2df0a5108c7edb", "x-ms-return-client-request-id": "true" }, @@ -5230,17 +5373,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:39 GMT", + "Date": "Wed, 16 Jun 2021 00:16:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a61121c0-b956-4177-995e-8b53f2ae5bd9", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "a61121c0-b956-4177-995e-8b53f2ae5bd9", - "x-ms-routing-request-id": "WESTUS2:20210519T185240Z:a61121c0-b956-4177-995e-8b53f2ae5bd9" + "x-ms-correlation-request-id": "d6383911-e714-4aff-9999-0ebc7a094a31", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "d6383911-e714-4aff-9999-0ebc7a094a31", + "x-ms-routing-request-id": "WESTUS2:20210616T001700Z:d6383911-e714-4aff-9999-0ebc7a094a31" }, "ResponseBody": [] }, @@ -5249,7 +5392,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81734ff96753f7db440c94703db7cc06", "x-ms-return-client-request-id": "true" }, @@ -5258,17 +5401,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:40 GMT", + "Date": "Wed, 16 Jun 2021 00:17:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "effad170-3b82-4427-8659-c379b6587124", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "effad170-3b82-4427-8659-c379b6587124", - "x-ms-routing-request-id": "WESTUS2:20210519T185241Z:effad170-3b82-4427-8659-c379b6587124" + "x-ms-correlation-request-id": "a7343315-1baa-427c-afa9-c0c23f87f572", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "a7343315-1baa-427c-afa9-c0c23f87f572", + "x-ms-routing-request-id": "WESTUS2:20210616T001701Z:a7343315-1baa-427c-afa9-c0c23f87f572" }, "ResponseBody": [] }, @@ -5277,7 +5420,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a718a2e186a5cb566b8fcf3eb9b99c62", "x-ms-return-client-request-id": "true" }, @@ -5286,17 +5429,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:41 GMT", + "Date": "Wed, 16 Jun 2021 00:17:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d359d3b9-f215-4c6a-a582-3079d82526df", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "d359d3b9-f215-4c6a-a582-3079d82526df", - "x-ms-routing-request-id": "WESTUS2:20210519T185242Z:d359d3b9-f215-4c6a-a582-3079d82526df" + "x-ms-correlation-request-id": "6f779d13-30ea-4f7e-9cfe-7918e5f1b4a7", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "6f779d13-30ea-4f7e-9cfe-7918e5f1b4a7", + "x-ms-routing-request-id": "WESTUS2:20210616T001702Z:6f779d13-30ea-4f7e-9cfe-7918e5f1b4a7" }, "ResponseBody": [] }, @@ -5305,7 +5448,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2f3d19122c060e2122b920d06314e76", "x-ms-return-client-request-id": "true" }, @@ -5314,17 +5457,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:42 GMT", + "Date": "Wed, 16 Jun 2021 00:17:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ae50d444-c06b-4b80-94e0-1773aa1e915a", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "ae50d444-c06b-4b80-94e0-1773aa1e915a", - "x-ms-routing-request-id": "WESTUS2:20210519T185243Z:ae50d444-c06b-4b80-94e0-1773aa1e915a" + "x-ms-correlation-request-id": "cc92752e-1150-4bca-90bb-fbf16f211a0f", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "cc92752e-1150-4bca-90bb-fbf16f211a0f", + "x-ms-routing-request-id": "WESTUS2:20210616T001703Z:cc92752e-1150-4bca-90bb-fbf16f211a0f" }, "ResponseBody": [] }, @@ -5333,7 +5476,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6dc4ea61d7737236f9a716c4989c3e8b", "x-ms-return-client-request-id": "true" }, @@ -5342,17 +5485,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:43 GMT", + "Date": "Wed, 16 Jun 2021 00:17:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0eaf3da5-76a7-4576-9974-2a1f65dfc1ab", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "0eaf3da5-76a7-4576-9974-2a1f65dfc1ab", - "x-ms-routing-request-id": "WESTUS2:20210519T185244Z:0eaf3da5-76a7-4576-9974-2a1f65dfc1ab" + "x-ms-correlation-request-id": "9c9c3d9a-df86-4277-877d-93fc4eb34773", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "9c9c3d9a-df86-4277-877d-93fc4eb34773", + "x-ms-routing-request-id": "WESTUS2:20210616T001704Z:9c9c3d9a-df86-4277-877d-93fc4eb34773" }, "ResponseBody": [] }, @@ -5361,7 +5504,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6cdf327009c3be45c0b8947af348c539", "x-ms-return-client-request-id": "true" }, @@ -5370,17 +5513,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:44 GMT", + "Date": "Wed, 16 Jun 2021 00:17:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e0c887b5-8405-4121-a835-282ac4d71283", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "e0c887b5-8405-4121-a835-282ac4d71283", - "x-ms-routing-request-id": "WESTUS2:20210519T185245Z:e0c887b5-8405-4121-a835-282ac4d71283" + "x-ms-correlation-request-id": "9d2667f6-babf-49c4-b625-fc5c9dc8d45c", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "9d2667f6-babf-49c4-b625-fc5c9dc8d45c", + "x-ms-routing-request-id": "WESTUS2:20210616T001705Z:9d2667f6-babf-49c4-b625-fc5c9dc8d45c" }, "ResponseBody": [] }, @@ -5389,7 +5532,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cfdd58402ef4baee9a80c9190b1dc876", "x-ms-return-client-request-id": "true" }, @@ -5398,17 +5541,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:45 GMT", + "Date": "Wed, 16 Jun 2021 00:17:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "25f07b47-3b4c-4e43-86d1-3ce89fd603fa", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "25f07b47-3b4c-4e43-86d1-3ce89fd603fa", - "x-ms-routing-request-id": "WESTUS2:20210519T185246Z:25f07b47-3b4c-4e43-86d1-3ce89fd603fa" + "x-ms-correlation-request-id": "57b38343-427e-40fb-8fc7-ff5dedc310e9", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "57b38343-427e-40fb-8fc7-ff5dedc310e9", + "x-ms-routing-request-id": "WESTUS2:20210616T001706Z:57b38343-427e-40fb-8fc7-ff5dedc310e9" }, "ResponseBody": [] }, @@ -5417,7 +5560,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d49d06ede25157b2a405adbb42bc7eb0", "x-ms-return-client-request-id": "true" }, @@ -5426,17 +5569,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:46 GMT", + "Date": "Wed, 16 Jun 2021 00:17:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3719e9be-ddcd-4046-bcf8-6e24e502ac5c", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "3719e9be-ddcd-4046-bcf8-6e24e502ac5c", - "x-ms-routing-request-id": "WESTUS2:20210519T185247Z:3719e9be-ddcd-4046-bcf8-6e24e502ac5c" + "x-ms-correlation-request-id": "f3582609-ad15-43a8-b7d4-686922155a96", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "f3582609-ad15-43a8-b7d4-686922155a96", + "x-ms-routing-request-id": "WESTUS2:20210616T001707Z:f3582609-ad15-43a8-b7d4-686922155a96" }, "ResponseBody": [] }, @@ -5445,7 +5588,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4084dce16ebf41974325d142402cb3a3", "x-ms-return-client-request-id": "true" }, @@ -5454,17 +5597,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:47 GMT", + "Date": "Wed, 16 Jun 2021 00:17:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b", - "x-ms-routing-request-id": "WESTUS2:20210519T185248Z:8caaf5e9-c7fc-414b-8da8-aef3f9e1bc9b" + "x-ms-correlation-request-id": "7ae3e16a-969a-4e36-9f86-f742a8075c6c", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "7ae3e16a-969a-4e36-9f86-f742a8075c6c", + "x-ms-routing-request-id": "WESTUS2:20210616T001708Z:7ae3e16a-969a-4e36-9f86-f742a8075c6c" }, "ResponseBody": [] }, @@ -5473,7 +5616,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed8c1ef0f1ab5de8a5862bee813277de", "x-ms-return-client-request-id": "true" }, @@ -5482,17 +5625,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:49 GMT", + "Date": "Wed, 16 Jun 2021 00:17:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba", - "x-ms-routing-request-id": "WESTUS2:20210519T185249Z:0e9bbb4f-6751-483c-b0b3-1f24c8cfb6ba" + "x-ms-correlation-request-id": "e978944d-47d2-42de-84e1-99a414851d84", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "e978944d-47d2-42de-84e1-99a414851d84", + "x-ms-routing-request-id": "WESTUS2:20210616T001709Z:e978944d-47d2-42de-84e1-99a414851d84" }, "ResponseBody": [] }, @@ -5501,7 +5644,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f38190287997eb66e5b902b11701777", "x-ms-return-client-request-id": "true" }, @@ -5510,17 +5653,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:50 GMT", + "Date": "Wed, 16 Jun 2021 00:17:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4cca2110-4d4d-47d9-b0d6-5af029751bd2", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "4cca2110-4d4d-47d9-b0d6-5af029751bd2", - "x-ms-routing-request-id": "WESTUS2:20210519T185250Z:4cca2110-4d4d-47d9-b0d6-5af029751bd2" + "x-ms-correlation-request-id": "1811a9a6-7496-4b01-8a84-11bc396d8a49", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "1811a9a6-7496-4b01-8a84-11bc396d8a49", + "x-ms-routing-request-id": "WESTUS2:20210616T001710Z:1811a9a6-7496-4b01-8a84-11bc396d8a49" }, "ResponseBody": [] }, @@ -5529,7 +5672,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24cb0a52912fef04f3269a3943a9c010", "x-ms-return-client-request-id": "true" }, @@ -5538,17 +5681,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:51 GMT", + "Date": "Wed, 16 Jun 2021 00:17:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3405cd98-52f8-4199-9c11-eac225cee826", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "3405cd98-52f8-4199-9c11-eac225cee826", - "x-ms-routing-request-id": "WESTUS2:20210519T185251Z:3405cd98-52f8-4199-9c11-eac225cee826" + "x-ms-correlation-request-id": "30a21fb1-3355-4c97-b632-5f39d952c0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "30a21fb1-3355-4c97-b632-5f39d952c0a3", + "x-ms-routing-request-id": "WESTUS2:20210616T001711Z:30a21fb1-3355-4c97-b632-5f39d952c0a3" }, "ResponseBody": [] }, @@ -5557,7 +5700,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2740f2ae83f46809670e7e5060bc4c35", "x-ms-return-client-request-id": "true" }, @@ -5566,17 +5709,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:52 GMT", + "Date": "Wed, 16 Jun 2021 00:17:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "defc28a2-7e81-469d-9306-7e29a87940b1", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "defc28a2-7e81-469d-9306-7e29a87940b1", - "x-ms-routing-request-id": "WESTUS2:20210519T185253Z:defc28a2-7e81-469d-9306-7e29a87940b1" + "x-ms-correlation-request-id": "144ceec8-288a-43f4-aadf-1814303ebc4a", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "144ceec8-288a-43f4-aadf-1814303ebc4a", + "x-ms-routing-request-id": "WESTUS2:20210616T001713Z:144ceec8-288a-43f4-aadf-1814303ebc4a" }, "ResponseBody": [] }, @@ -5585,7 +5728,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "769bb36e536770af14483b73ed7d3ac5", "x-ms-return-client-request-id": "true" }, @@ -5594,17 +5737,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:53 GMT", + "Date": "Wed, 16 Jun 2021 00:17:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8846096d-6c0f-4c83-aeca-6a6cd3abb305", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "8846096d-6c0f-4c83-aeca-6a6cd3abb305", - "x-ms-routing-request-id": "WESTUS2:20210519T185254Z:8846096d-6c0f-4c83-aeca-6a6cd3abb305" + "x-ms-correlation-request-id": "b9105cf2-46be-487b-9728-c3372f4372ab", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "b9105cf2-46be-487b-9728-c3372f4372ab", + "x-ms-routing-request-id": "WESTUS2:20210616T001714Z:b9105cf2-46be-487b-9728-c3372f4372ab" }, "ResponseBody": [] }, @@ -5613,7 +5756,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e7d809bef2fcf830063bc2013b38f37", "x-ms-return-client-request-id": "true" }, @@ -5622,17 +5765,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:54 GMT", + "Date": "Wed, 16 Jun 2021 00:17:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "509dc2f8-980b-4c12-8b55-4ab79957a568", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "509dc2f8-980b-4c12-8b55-4ab79957a568", - "x-ms-routing-request-id": "WESTUS2:20210519T185255Z:509dc2f8-980b-4c12-8b55-4ab79957a568" + "x-ms-correlation-request-id": "351256be-02c9-4c6f-a812-a62033dff112", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "351256be-02c9-4c6f-a812-a62033dff112", + "x-ms-routing-request-id": "WESTUS2:20210616T001715Z:351256be-02c9-4c6f-a812-a62033dff112" }, "ResponseBody": [] }, @@ -5641,7 +5784,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90ca65d9490e5aa942d012ab47967aea", "x-ms-return-client-request-id": "true" }, @@ -5650,17 +5793,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:55 GMT", + "Date": "Wed, 16 Jun 2021 00:17:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "85948b30-b937-43a1-be55-04ca398e11bc", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "85948b30-b937-43a1-be55-04ca398e11bc", - "x-ms-routing-request-id": "WESTUS2:20210519T185256Z:85948b30-b937-43a1-be55-04ca398e11bc" + "x-ms-correlation-request-id": "d9254633-b095-4ee9-9296-20c76fb72c71", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "d9254633-b095-4ee9-9296-20c76fb72c71", + "x-ms-routing-request-id": "WESTUS2:20210616T001716Z:d9254633-b095-4ee9-9296-20c76fb72c71" }, "ResponseBody": [] }, @@ -5669,7 +5812,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0b5b8d42d3e7f052fcb7603968e5c60", "x-ms-return-client-request-id": "true" }, @@ -5678,17 +5821,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:56 GMT", + "Date": "Wed, 16 Jun 2021 00:17:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6388841f-1d12-4afc-9950-aacee7530392", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "6388841f-1d12-4afc-9950-aacee7530392", - "x-ms-routing-request-id": "WESTUS2:20210519T185257Z:6388841f-1d12-4afc-9950-aacee7530392" + "x-ms-correlation-request-id": "a4963355-a72b-42ec-b0c6-dedd6c5e2042", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "a4963355-a72b-42ec-b0c6-dedd6c5e2042", + "x-ms-routing-request-id": "WESTUS2:20210616T001717Z:a4963355-a72b-42ec-b0c6-dedd6c5e2042" }, "ResponseBody": [] }, @@ -5697,7 +5840,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "889903b9aab251b7d723dc5eddd78769", "x-ms-return-client-request-id": "true" }, @@ -5706,17 +5849,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:57 GMT", + "Date": "Wed, 16 Jun 2021 00:17:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4", - "x-ms-routing-request-id": "WESTUS2:20210519T185258Z:a32b6130-5b5a-4eb4-a3cb-f71a0b1d71d4" + "x-ms-correlation-request-id": "0b4d07c9-2122-4cea-9d05-6f0f70cfe10b", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "0b4d07c9-2122-4cea-9d05-6f0f70cfe10b", + "x-ms-routing-request-id": "WESTUS2:20210616T001718Z:0b4d07c9-2122-4cea-9d05-6f0f70cfe10b" }, "ResponseBody": [] }, @@ -5725,7 +5868,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b4cd2e8aefeabf95f4b6042d2a5c3b3", "x-ms-return-client-request-id": "true" }, @@ -5734,17 +5877,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:58 GMT", + "Date": "Wed, 16 Jun 2021 00:17:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dd00e790-b564-4a56-b87f-4aa7fc941fe7", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "dd00e790-b564-4a56-b87f-4aa7fc941fe7", - "x-ms-routing-request-id": "WESTUS2:20210519T185259Z:dd00e790-b564-4a56-b87f-4aa7fc941fe7" + "x-ms-correlation-request-id": "ecc1fdad-62b5-4dfa-a36c-f41f7047dc88", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "ecc1fdad-62b5-4dfa-a36c-f41f7047dc88", + "x-ms-routing-request-id": "WESTUS2:20210616T001719Z:ecc1fdad-62b5-4dfa-a36c-f41f7047dc88" }, "ResponseBody": [] }, @@ -5753,7 +5896,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44f2b174f2fd2a370163091b51a6a158", "x-ms-return-client-request-id": "true" }, @@ -5762,17 +5905,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:59 GMT", + "Date": "Wed, 16 Jun 2021 00:17:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5a7af0a2-62b2-4360-abfe-fd7b1495d5e0", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "5a7af0a2-62b2-4360-abfe-fd7b1495d5e0", - "x-ms-routing-request-id": "WESTUS2:20210519T185300Z:5a7af0a2-62b2-4360-abfe-fd7b1495d5e0" + "x-ms-correlation-request-id": "73ea99b9-17fe-4cfc-bd89-c84db5b17f6e", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "73ea99b9-17fe-4cfc-bd89-c84db5b17f6e", + "x-ms-routing-request-id": "WESTUS2:20210616T001720Z:73ea99b9-17fe-4cfc-bd89-c84db5b17f6e" }, "ResponseBody": [] }, @@ -5781,7 +5924,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c41a0c4400420a620aed286749747e31", "x-ms-return-client-request-id": "true" }, @@ -5790,17 +5933,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:00 GMT", + "Date": "Wed, 16 Jun 2021 00:17:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "304e9d9d-59b1-44cd-b0cf-48de2b498ed2", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "304e9d9d-59b1-44cd-b0cf-48de2b498ed2", - "x-ms-routing-request-id": "WESTUS2:20210519T185301Z:304e9d9d-59b1-44cd-b0cf-48de2b498ed2" + "x-ms-correlation-request-id": "b686f1c7-5a27-423d-871d-0461cfb3ee69", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "b686f1c7-5a27-423d-871d-0461cfb3ee69", + "x-ms-routing-request-id": "WESTUS2:20210616T001721Z:b686f1c7-5a27-423d-871d-0461cfb3ee69" }, "ResponseBody": [] }, @@ -5809,7 +5952,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bea285f43e4f66c9b22599aa5de5ab8", "x-ms-return-client-request-id": "true" }, @@ -5818,17 +5961,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:01 GMT", + "Date": "Wed, 16 Jun 2021 00:17:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0", - "x-ms-routing-request-id": "WESTUS2:20210519T185302Z:1c05d0d8-4dc8-4be4-b594-bf7b1a9963a0" + "x-ms-correlation-request-id": "7d86dc10-7242-4eac-b906-861748cc2b86", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "7d86dc10-7242-4eac-b906-861748cc2b86", + "x-ms-routing-request-id": "WESTUS2:20210616T001722Z:7d86dc10-7242-4eac-b906-861748cc2b86" }, "ResponseBody": [] }, @@ -5837,7 +5980,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c6fd08a9ff8a73714fe8390fcacfe08d", "x-ms-return-client-request-id": "true" }, @@ -5846,17 +5989,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:02 GMT", + "Date": "Wed, 16 Jun 2021 00:17:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f", - "x-ms-routing-request-id": "WESTUS2:20210519T185303Z:e2ce1d7e-7b37-49d1-b56c-7329b9fdfd7f" + "x-ms-correlation-request-id": "dfdc7036-4836-4ec0-a7f5-59217154567a", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "dfdc7036-4836-4ec0-a7f5-59217154567a", + "x-ms-routing-request-id": "WESTUS2:20210616T001723Z:dfdc7036-4836-4ec0-a7f5-59217154567a" }, "ResponseBody": [] }, @@ -5865,7 +6008,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29bbd7e576bc0173a024291fa7c7642c", "x-ms-return-client-request-id": "true" }, @@ -5874,17 +6017,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:03 GMT", + "Date": "Wed, 16 Jun 2021 00:17:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9fc8d1a7-14be-47ea-a367-e59242edda97", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "9fc8d1a7-14be-47ea-a367-e59242edda97", - "x-ms-routing-request-id": "WESTUS2:20210519T185304Z:9fc8d1a7-14be-47ea-a367-e59242edda97" + "x-ms-correlation-request-id": "e24524e9-7486-4cd7-a693-66dad1407ddb", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "e24524e9-7486-4cd7-a693-66dad1407ddb", + "x-ms-routing-request-id": "WESTUS2:20210616T001724Z:e24524e9-7486-4cd7-a693-66dad1407ddb" }, "ResponseBody": [] }, @@ -5893,7 +6036,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40be6f93b87660a6b676dbfc095c2bcb", "x-ms-return-client-request-id": "true" }, @@ -5902,17 +6045,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:05 GMT", + "Date": "Wed, 16 Jun 2021 00:17:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a7d02a21-336b-4969-aa02-11e3bb435608", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "a7d02a21-336b-4969-aa02-11e3bb435608", - "x-ms-routing-request-id": "WESTUS2:20210519T185305Z:a7d02a21-336b-4969-aa02-11e3bb435608" + "x-ms-correlation-request-id": "5cc857fe-045a-44f8-a200-0f71f27cfdc1", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "5cc857fe-045a-44f8-a200-0f71f27cfdc1", + "x-ms-routing-request-id": "WESTUS2:20210616T001725Z:5cc857fe-045a-44f8-a200-0f71f27cfdc1" }, "ResponseBody": [] }, @@ -5921,7 +6064,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ceb5cc41302232fc94fc2566d551cc87", "x-ms-return-client-request-id": "true" }, @@ -5930,17 +6073,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:06 GMT", + "Date": "Wed, 16 Jun 2021 00:17:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9eca7b47-9387-4c73-901a-824636f5bb06", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "9eca7b47-9387-4c73-901a-824636f5bb06", - "x-ms-routing-request-id": "WESTUS2:20210519T185306Z:9eca7b47-9387-4c73-901a-824636f5bb06" + "x-ms-correlation-request-id": "2a843553-65cf-407d-a181-3da5505bfda3", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "2a843553-65cf-407d-a181-3da5505bfda3", + "x-ms-routing-request-id": "WESTUS2:20210616T001726Z:2a843553-65cf-407d-a181-3da5505bfda3" }, "ResponseBody": [] }, @@ -5949,7 +6092,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a7c0c839f112c16305b72459b77f744", "x-ms-return-client-request-id": "true" }, @@ -5958,17 +6101,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:07 GMT", + "Date": "Wed, 16 Jun 2021 00:17:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "780170da-b937-41dc-9da9-b56094e7dbf1", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "780170da-b937-41dc-9da9-b56094e7dbf1", - "x-ms-routing-request-id": "WESTUS2:20210519T185307Z:780170da-b937-41dc-9da9-b56094e7dbf1" + "x-ms-correlation-request-id": "28398a29-7f78-4bee-95d1-d9c3756257df", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "28398a29-7f78-4bee-95d1-d9c3756257df", + "x-ms-routing-request-id": "WESTUS2:20210616T001727Z:28398a29-7f78-4bee-95d1-d9c3756257df" }, "ResponseBody": [] }, @@ -5977,7 +6120,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dade5df896126209738bac7a93408a65", "x-ms-return-client-request-id": "true" }, @@ -5986,17 +6129,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:08 GMT", + "Date": "Wed, 16 Jun 2021 00:17:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d71d926f-db8a-4567-897f-488124250b00", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "d71d926f-db8a-4567-897f-488124250b00", - "x-ms-routing-request-id": "WESTUS2:20210519T185308Z:d71d926f-db8a-4567-897f-488124250b00" + "x-ms-correlation-request-id": "f7fb1fae-e0b1-4a9d-a970-45951daabe22", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "f7fb1fae-e0b1-4a9d-a970-45951daabe22", + "x-ms-routing-request-id": "WESTUS2:20210616T001728Z:f7fb1fae-e0b1-4a9d-a970-45951daabe22" }, "ResponseBody": [] }, @@ -6005,7 +6148,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc7853aad1dfa2bab6889ec7bdb7971d", "x-ms-return-client-request-id": "true" }, @@ -6014,17 +6157,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:09 GMT", + "Date": "Wed, 16 Jun 2021 00:17:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1a66e1b8-41c8-4a4d-9333-e1030f592937", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "1a66e1b8-41c8-4a4d-9333-e1030f592937", - "x-ms-routing-request-id": "WESTUS2:20210519T185309Z:1a66e1b8-41c8-4a4d-9333-e1030f592937" + "x-ms-correlation-request-id": "aa46a8b6-8c4f-49f5-b31c-e82ac84eb7d0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "aa46a8b6-8c4f-49f5-b31c-e82ac84eb7d0", + "x-ms-routing-request-id": "WESTUS2:20210616T001729Z:aa46a8b6-8c4f-49f5-b31c-e82ac84eb7d0" }, "ResponseBody": [] }, @@ -6033,7 +6176,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "776de104f173ed750319e785f39b99ef", "x-ms-return-client-request-id": "true" }, @@ -6042,17 +6185,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:10 GMT", + "Date": "Wed, 16 Jun 2021 00:17:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9c8ce014-a125-42ee-a22d-37e728c8d761", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "9c8ce014-a125-42ee-a22d-37e728c8d761", - "x-ms-routing-request-id": "WESTUS2:20210519T185310Z:9c8ce014-a125-42ee-a22d-37e728c8d761" + "x-ms-correlation-request-id": "17ab38ee-e55d-48ef-ba49-c6482ca08fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "17ab38ee-e55d-48ef-ba49-c6482ca08fa7", + "x-ms-routing-request-id": "WESTUS2:20210616T001730Z:17ab38ee-e55d-48ef-ba49-c6482ca08fa7" }, "ResponseBody": [] }, @@ -6061,7 +6204,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "479a0dd0fafe2764a33b2489f842a5bc", "x-ms-return-client-request-id": "true" }, @@ -6070,17 +6213,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:11 GMT", + "Date": "Wed, 16 Jun 2021 00:17:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "60fec41a-06c7-4536-8d87-dd7a0407bde5", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "60fec41a-06c7-4536-8d87-dd7a0407bde5", - "x-ms-routing-request-id": "WESTUS2:20210519T185311Z:60fec41a-06c7-4536-8d87-dd7a0407bde5" + "x-ms-correlation-request-id": "5d73d89b-7239-4799-a181-187d03391d4f", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "5d73d89b-7239-4799-a181-187d03391d4f", + "x-ms-routing-request-id": "WESTUS2:20210616T001731Z:5d73d89b-7239-4799-a181-187d03391d4f" }, "ResponseBody": [] }, @@ -6089,7 +6232,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1758ef413d3b9f1de8af9c6e935ae1a", "x-ms-return-client-request-id": "true" }, @@ -6098,17 +6241,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:12 GMT", + "Date": "Wed, 16 Jun 2021 00:17:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f1617354-17e4-47dd-af61-450977e95f72", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "f1617354-17e4-47dd-af61-450977e95f72", - "x-ms-routing-request-id": "WESTUS2:20210519T185312Z:f1617354-17e4-47dd-af61-450977e95f72" + "x-ms-correlation-request-id": "fea6c9f4-ec22-477a-9f9b-2b799cd78796", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "fea6c9f4-ec22-477a-9f9b-2b799cd78796", + "x-ms-routing-request-id": "WESTUS2:20210616T001732Z:fea6c9f4-ec22-477a-9f9b-2b799cd78796" }, "ResponseBody": [] }, @@ -6117,7 +6260,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aff7aeef501c0a1f7c46d437ccebf5c0", "x-ms-return-client-request-id": "true" }, @@ -6126,17 +6269,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:13 GMT", + "Date": "Wed, 16 Jun 2021 00:17:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6049fc13-93c3-4c6d-addb-ca69e4f0d2f0", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "6049fc13-93c3-4c6d-addb-ca69e4f0d2f0", - "x-ms-routing-request-id": "WESTUS2:20210519T185313Z:6049fc13-93c3-4c6d-addb-ca69e4f0d2f0" + "x-ms-correlation-request-id": "a75c034b-a5d1-4c0f-aede-b8887bc4e6e1", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a75c034b-a5d1-4c0f-aede-b8887bc4e6e1", + "x-ms-routing-request-id": "WESTUS2:20210616T001733Z:a75c034b-a5d1-4c0f-aede-b8887bc4e6e1" }, "ResponseBody": [] }, @@ -6145,7 +6288,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65902b74e726bd1c1be06873009d3e6d", "x-ms-return-client-request-id": "true" }, @@ -6154,17 +6297,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:14 GMT", + "Date": "Wed, 16 Jun 2021 00:17:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c", - "x-ms-routing-request-id": "WESTUS2:20210519T185314Z:c81d3202-0f29-4e12-ba1a-bdb8e03f7d8c" + "x-ms-correlation-request-id": "8f3f2328-e386-4a8b-9d32-6765094e1a41", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "8f3f2328-e386-4a8b-9d32-6765094e1a41", + "x-ms-routing-request-id": "WESTUS2:20210616T001734Z:8f3f2328-e386-4a8b-9d32-6765094e1a41" }, "ResponseBody": [] }, @@ -6173,7 +6316,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "499a098df54ba49f6f6b348c3ebaedf3", "x-ms-return-client-request-id": "true" }, @@ -6182,17 +6325,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:15 GMT", + "Date": "Wed, 16 Jun 2021 00:17:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1fa7544d-4f5c-49ca-bad8-984fff404c48", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "1fa7544d-4f5c-49ca-bad8-984fff404c48", - "x-ms-routing-request-id": "WESTUS2:20210519T185315Z:1fa7544d-4f5c-49ca-bad8-984fff404c48" + "x-ms-correlation-request-id": "75bd69a8-cedd-4091-885c-fe9f2f47bda0", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "75bd69a8-cedd-4091-885c-fe9f2f47bda0", + "x-ms-routing-request-id": "WESTUS2:20210616T001735Z:75bd69a8-cedd-4091-885c-fe9f2f47bda0" }, "ResponseBody": [] }, @@ -6201,7 +6344,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd52399549a507f49139933ce7ab09df", "x-ms-return-client-request-id": "true" }, @@ -6210,17 +6353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:16 GMT", + "Date": "Wed, 16 Jun 2021 00:17:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3b702241-6254-4c35-b224-24f7ed9a6f43", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "3b702241-6254-4c35-b224-24f7ed9a6f43", - "x-ms-routing-request-id": "WESTUS2:20210519T185316Z:3b702241-6254-4c35-b224-24f7ed9a6f43" + "x-ms-correlation-request-id": "94e12285-4863-4b05-8735-c399f878b5b0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "94e12285-4863-4b05-8735-c399f878b5b0", + "x-ms-routing-request-id": "WESTUS2:20210616T001736Z:94e12285-4863-4b05-8735-c399f878b5b0" }, "ResponseBody": [] }, @@ -6229,7 +6372,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2a96607ab507e758becf6bab28f7e61", "x-ms-return-client-request-id": "true" }, @@ -6238,17 +6381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:17 GMT", + "Date": "Wed, 16 Jun 2021 00:17:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e98e0a50-fde6-4dc2-9cdc-8aef2344f853", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "e98e0a50-fde6-4dc2-9cdc-8aef2344f853", - "x-ms-routing-request-id": "WESTUS2:20210519T185317Z:e98e0a50-fde6-4dc2-9cdc-8aef2344f853" + "x-ms-correlation-request-id": "2883b685-54de-411e-9824-16dc5a8e99bc", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "2883b685-54de-411e-9824-16dc5a8e99bc", + "x-ms-routing-request-id": "WESTUS2:20210616T001737Z:2883b685-54de-411e-9824-16dc5a8e99bc" }, "ResponseBody": [] }, @@ -6257,7 +6400,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7de74f3804b44c81593b8116163bcc3", "x-ms-return-client-request-id": "true" }, @@ -6266,17 +6409,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:18 GMT", + "Date": "Wed, 16 Jun 2021 00:17:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3c0be25a-e680-478c-a9c7-4359300d1ffd", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "3c0be25a-e680-478c-a9c7-4359300d1ffd", - "x-ms-routing-request-id": "WESTUS2:20210519T185318Z:3c0be25a-e680-478c-a9c7-4359300d1ffd" + "x-ms-correlation-request-id": "4f2660a0-f0c4-400a-b002-86ea833d89cb", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4f2660a0-f0c4-400a-b002-86ea833d89cb", + "x-ms-routing-request-id": "WESTUS2:20210616T001738Z:4f2660a0-f0c4-400a-b002-86ea833d89cb" }, "ResponseBody": [] }, @@ -6285,7 +6428,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d88455612a10e9a3c4d332b852395401", "x-ms-return-client-request-id": "true" }, @@ -6294,17 +6437,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:19 GMT", + "Date": "Wed, 16 Jun 2021 00:17:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "09c75514-d7a0-4f17-b7ef-0f0b18ab7230", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "09c75514-d7a0-4f17-b7ef-0f0b18ab7230", - "x-ms-routing-request-id": "WESTUS2:20210519T185319Z:09c75514-d7a0-4f17-b7ef-0f0b18ab7230" + "x-ms-correlation-request-id": "bd9bf7cd-c1a3-491b-ac4a-b751e0f262d9", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "bd9bf7cd-c1a3-491b-ac4a-b751e0f262d9", + "x-ms-routing-request-id": "WESTUS2:20210616T001739Z:bd9bf7cd-c1a3-491b-ac4a-b751e0f262d9" }, "ResponseBody": [] }, @@ -6313,7 +6456,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "734832bb42cc87939d65adbdf3631c28", "x-ms-return-client-request-id": "true" }, @@ -6322,17 +6465,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:20 GMT", + "Date": "Wed, 16 Jun 2021 00:17:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5159afad-12f3-48aa-bb64-f8613675db2a", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "5159afad-12f3-48aa-bb64-f8613675db2a", - "x-ms-routing-request-id": "WESTUS2:20210519T185320Z:5159afad-12f3-48aa-bb64-f8613675db2a" + "x-ms-correlation-request-id": "64ec8788-9d7e-437e-84f7-d3f4df5a74ed", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "64ec8788-9d7e-437e-84f7-d3f4df5a74ed", + "x-ms-routing-request-id": "WESTUS2:20210616T001741Z:64ec8788-9d7e-437e-84f7-d3f4df5a74ed" }, "ResponseBody": [] }, @@ -6341,7 +6484,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d59322fa50ac850d1f403774e10f1db", "x-ms-return-client-request-id": "true" }, @@ -6350,17 +6493,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:21 GMT", + "Date": "Wed, 16 Jun 2021 00:17:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "581dae92-0fa2-4df9-97bc-3fe38b2f762b", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "581dae92-0fa2-4df9-97bc-3fe38b2f762b", - "x-ms-routing-request-id": "WESTUS2:20210519T185321Z:581dae92-0fa2-4df9-97bc-3fe38b2f762b" + "x-ms-correlation-request-id": "63d4890e-471e-47e7-8dbf-8912ba2bc9c6", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "63d4890e-471e-47e7-8dbf-8912ba2bc9c6", + "x-ms-routing-request-id": "WESTUS2:20210616T001742Z:63d4890e-471e-47e7-8dbf-8912ba2bc9c6" }, "ResponseBody": [] }, @@ -6369,7 +6512,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f56b63e481a1ef7c2fd3bab7de6f660", "x-ms-return-client-request-id": "true" }, @@ -6378,17 +6521,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:22 GMT", + "Date": "Wed, 16 Jun 2021 00:17:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c", - "x-ms-routing-request-id": "WESTUS2:20210519T185322Z:6ceeeaab-8c0a-4fa7-9a93-1398b2a3922c" + "x-ms-correlation-request-id": "eceb212e-10eb-4f0f-be23-328a4b30ac5f", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "eceb212e-10eb-4f0f-be23-328a4b30ac5f", + "x-ms-routing-request-id": "WESTUS2:20210616T001743Z:eceb212e-10eb-4f0f-be23-328a4b30ac5f" }, "ResponseBody": [] }, @@ -6397,7 +6540,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "208809b7f7e016f7e180a2d83f1c398d", "x-ms-return-client-request-id": "true" }, @@ -6406,17 +6549,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:23 GMT", + "Date": "Wed, 16 Jun 2021 00:17:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7", - "x-ms-routing-request-id": "WESTUS2:20210519T185323Z:fc7691cd-2e28-4aa4-ae9d-a7fe976f9bb7" + "x-ms-correlation-request-id": "5aeda0bf-b065-428b-8efa-3e75c9684688", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "5aeda0bf-b065-428b-8efa-3e75c9684688", + "x-ms-routing-request-id": "WESTUS2:20210616T001744Z:5aeda0bf-b065-428b-8efa-3e75c9684688" }, "ResponseBody": [] }, @@ -6425,7 +6568,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c7ed173ed0de60d3b3a9b0d6aa54bea", "x-ms-return-client-request-id": "true" }, @@ -6434,17 +6577,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:24 GMT", + "Date": "Wed, 16 Jun 2021 00:17:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "88f00ad7-3b87-4cd7-b7f2-68c06a81e13d", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "88f00ad7-3b87-4cd7-b7f2-68c06a81e13d", - "x-ms-routing-request-id": "WESTUS2:20210519T185324Z:88f00ad7-3b87-4cd7-b7f2-68c06a81e13d" + "x-ms-correlation-request-id": "4b2e7087-1e98-4748-a109-3b4666258ea2", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "4b2e7087-1e98-4748-a109-3b4666258ea2", + "x-ms-routing-request-id": "WESTUS2:20210616T001745Z:4b2e7087-1e98-4748-a109-3b4666258ea2" }, "ResponseBody": [] }, @@ -6453,7 +6596,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44c0a2fed18746fbbf3f4d99a61edfa5", "x-ms-return-client-request-id": "true" }, @@ -6462,17 +6605,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:25 GMT", + "Date": "Wed, 16 Jun 2021 00:17:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "12deaee4-fdb3-470a-994a-b4f2b138c773", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "12deaee4-fdb3-470a-994a-b4f2b138c773", - "x-ms-routing-request-id": "WESTUS2:20210519T185326Z:12deaee4-fdb3-470a-994a-b4f2b138c773" + "x-ms-correlation-request-id": "1217414c-910f-4096-8505-641fdcd4e015", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "1217414c-910f-4096-8505-641fdcd4e015", + "x-ms-routing-request-id": "WESTUS2:20210616T001746Z:1217414c-910f-4096-8505-641fdcd4e015" }, "ResponseBody": [] }, @@ -6481,7 +6624,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab37adc3b967c953fba1e5a55ce9ab3c", "x-ms-return-client-request-id": "true" }, @@ -6490,17 +6633,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:26 GMT", + "Date": "Wed, 16 Jun 2021 00:17:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4", - "x-ms-routing-request-id": "WESTUS2:20210519T185327Z:c3a997f9-a9c2-401a-bfd0-fbb9fe86c5a4" + "x-ms-correlation-request-id": "9ddc5a8e-779f-4778-81fb-aba86a98f87b", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "9ddc5a8e-779f-4778-81fb-aba86a98f87b", + "x-ms-routing-request-id": "WESTUS2:20210616T001747Z:9ddc5a8e-779f-4778-81fb-aba86a98f87b" }, "ResponseBody": [] }, @@ -6509,7 +6652,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ddab735f55ba206d6387dcda073401c", "x-ms-return-client-request-id": "true" }, @@ -6518,17 +6661,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:27 GMT", + "Date": "Wed, 16 Jun 2021 00:17:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ea17d252-4c35-43aa-984f-d617cb1e53af", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "ea17d252-4c35-43aa-984f-d617cb1e53af", - "x-ms-routing-request-id": "WESTUS2:20210519T185328Z:ea17d252-4c35-43aa-984f-d617cb1e53af" + "x-ms-correlation-request-id": "270f5b9d-99a2-4935-81e7-90800166b0dc", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "270f5b9d-99a2-4935-81e7-90800166b0dc", + "x-ms-routing-request-id": "WESTUS2:20210616T001748Z:270f5b9d-99a2-4935-81e7-90800166b0dc" }, "ResponseBody": [] }, @@ -6537,7 +6680,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc4af55b9f6e44834ff648e5eb56e9d5", "x-ms-return-client-request-id": "true" }, @@ -6546,17 +6689,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:28 GMT", + "Date": "Wed, 16 Jun 2021 00:17:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c2526cfe-9357-456d-86d6-f85023ed8d76", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "c2526cfe-9357-456d-86d6-f85023ed8d76", - "x-ms-routing-request-id": "WESTUS2:20210519T185329Z:c2526cfe-9357-456d-86d6-f85023ed8d76" + "x-ms-correlation-request-id": "4288351e-056f-4421-85b5-a2f2d43b88c8", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "4288351e-056f-4421-85b5-a2f2d43b88c8", + "x-ms-routing-request-id": "WESTUS2:20210616T001749Z:4288351e-056f-4421-85b5-a2f2d43b88c8" }, "ResponseBody": [] }, @@ -6565,7 +6708,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef6410944244cd49a794d52f3b852887", "x-ms-return-client-request-id": "true" }, @@ -6574,17 +6717,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:29 GMT", + "Date": "Wed, 16 Jun 2021 00:17:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "eb690710-9918-4b69-8da9-2c9c26e28c18", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "eb690710-9918-4b69-8da9-2c9c26e28c18", - "x-ms-routing-request-id": "WESTUS2:20210519T185330Z:eb690710-9918-4b69-8da9-2c9c26e28c18" + "x-ms-correlation-request-id": "d58cf79c-17d1-4ba4-b8b5-02252818fef7", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "d58cf79c-17d1-4ba4-b8b5-02252818fef7", + "x-ms-routing-request-id": "WESTUS2:20210616T001750Z:d58cf79c-17d1-4ba4-b8b5-02252818fef7" }, "ResponseBody": [] }, @@ -6593,7 +6736,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "674ac961ef9f96ce34954e64ac21b780", "x-ms-return-client-request-id": "true" }, @@ -6602,17 +6745,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:30 GMT", + "Date": "Wed, 16 Jun 2021 00:17:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "98875ab6-cabf-4688-8c90-2c30e695e88a", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "98875ab6-cabf-4688-8c90-2c30e695e88a", - "x-ms-routing-request-id": "WESTUS2:20210519T185331Z:98875ab6-cabf-4688-8c90-2c30e695e88a" + "x-ms-correlation-request-id": "82032256-1106-4af8-8a91-65e5da9646b1", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "82032256-1106-4af8-8a91-65e5da9646b1", + "x-ms-routing-request-id": "WESTUS2:20210616T001751Z:82032256-1106-4af8-8a91-65e5da9646b1" }, "ResponseBody": [] }, @@ -6621,7 +6764,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f39a84e510f18d7ab7c14d9ca5308c9", "x-ms-return-client-request-id": "true" }, @@ -6630,17 +6773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:31 GMT", + "Date": "Wed, 16 Jun 2021 00:17:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bd07dc8c-2064-4e2a-951c-966e0cd29a6e", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "bd07dc8c-2064-4e2a-951c-966e0cd29a6e", - "x-ms-routing-request-id": "WESTUS2:20210519T185332Z:bd07dc8c-2064-4e2a-951c-966e0cd29a6e" + "x-ms-correlation-request-id": "335331fb-04aa-41c4-bafb-ed8acd5a1667", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "335331fb-04aa-41c4-bafb-ed8acd5a1667", + "x-ms-routing-request-id": "WESTUS2:20210616T001752Z:335331fb-04aa-41c4-bafb-ed8acd5a1667" }, "ResponseBody": [] }, @@ -6649,7 +6792,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2283c0ce820ba43542cebaaef4e42186", "x-ms-return-client-request-id": "true" }, @@ -6658,17 +6801,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:32 GMT", + "Date": "Wed, 16 Jun 2021 00:17:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bad4294b-3b6b-4e9b-9e89-db91b4d96aaf", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-request-id": "bad4294b-3b6b-4e9b-9e89-db91b4d96aaf", - "x-ms-routing-request-id": "WESTUS2:20210519T185333Z:bad4294b-3b6b-4e9b-9e89-db91b4d96aaf" + "x-ms-correlation-request-id": "692db9b2-0ef8-42d7-8359-541f783eb84a", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "692db9b2-0ef8-42d7-8359-541f783eb84a", + "x-ms-routing-request-id": "WESTUS2:20210616T001753Z:692db9b2-0ef8-42d7-8359-541f783eb84a" }, "ResponseBody": [] }, @@ -6677,7 +6820,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93e054dd984c1078f131bc23daf4cbe0", "x-ms-return-client-request-id": "true" }, @@ -6686,17 +6829,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:33 GMT", + "Date": "Wed, 16 Jun 2021 00:17:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9892d2ba-d169-45c4-aa58-72a219134af4", - "x-ms-ratelimit-remaining-subscription-reads": "11744", - "x-ms-request-id": "9892d2ba-d169-45c4-aa58-72a219134af4", - "x-ms-routing-request-id": "WESTUS2:20210519T185334Z:9892d2ba-d169-45c4-aa58-72a219134af4" + "x-ms-correlation-request-id": "858f5198-2988-43b1-96f3-6455ed2d1077", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "858f5198-2988-43b1-96f3-6455ed2d1077", + "x-ms-routing-request-id": "WESTUS2:20210616T001754Z:858f5198-2988-43b1-96f3-6455ed2d1077" }, "ResponseBody": [] }, @@ -6705,7 +6848,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec96848c949dcc7472944d41962824c6", "x-ms-return-client-request-id": "true" }, @@ -6714,17 +6857,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:34 GMT", + "Date": "Wed, 16 Jun 2021 00:17:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a67d8fd6-36f4-47af-811f-42d76d456b7e", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-request-id": "a67d8fd6-36f4-47af-811f-42d76d456b7e", - "x-ms-routing-request-id": "WESTUS2:20210519T185335Z:a67d8fd6-36f4-47af-811f-42d76d456b7e" + "x-ms-correlation-request-id": "e288bdef-4d1a-432e-ae4f-b123031633e6", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "e288bdef-4d1a-432e-ae4f-b123031633e6", + "x-ms-routing-request-id": "WESTUS2:20210616T001755Z:e288bdef-4d1a-432e-ae4f-b123031633e6" }, "ResponseBody": [] }, @@ -6733,7 +6876,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75fc8e5b7572357c487231dac512ca4e", "x-ms-return-client-request-id": "true" }, @@ -6742,17 +6885,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:35 GMT", + "Date": "Wed, 16 Jun 2021 00:17:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "686bf505-0c38-449e-9afa-c8ad77eec318", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-request-id": "686bf505-0c38-449e-9afa-c8ad77eec318", - "x-ms-routing-request-id": "WESTUS2:20210519T185336Z:686bf505-0c38-449e-9afa-c8ad77eec318" + "x-ms-correlation-request-id": "b8aa992d-fc62-411b-a439-14749bab22e6", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "b8aa992d-fc62-411b-a439-14749bab22e6", + "x-ms-routing-request-id": "WESTUS2:20210616T001756Z:b8aa992d-fc62-411b-a439-14749bab22e6" }, "ResponseBody": [] }, @@ -6761,7 +6904,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f22da02354e48e8df1420b84b377ac8", "x-ms-return-client-request-id": "true" }, @@ -6770,17 +6913,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:36 GMT", + "Date": "Wed, 16 Jun 2021 00:17:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "725c52e4-9fe1-46b9-a9fd-738d3050c255", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-request-id": "725c52e4-9fe1-46b9-a9fd-738d3050c255", - "x-ms-routing-request-id": "WESTUS2:20210519T185337Z:725c52e4-9fe1-46b9-a9fd-738d3050c255" + "x-ms-correlation-request-id": "7ff2e1b0-a659-4191-830e-afa116de0de4", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "7ff2e1b0-a659-4191-830e-afa116de0de4", + "x-ms-routing-request-id": "WESTUS2:20210616T001757Z:7ff2e1b0-a659-4191-830e-afa116de0de4" }, "ResponseBody": [] }, @@ -6789,7 +6932,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4cc7f50c55f7176d0861a32a639a065f", "x-ms-return-client-request-id": "true" }, @@ -6798,17 +6941,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:37 GMT", + "Date": "Wed, 16 Jun 2021 00:17:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f1cddd98-352d-4da1-b4b1-7c4380c56783", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-request-id": "f1cddd98-352d-4da1-b4b1-7c4380c56783", - "x-ms-routing-request-id": "WESTUS2:20210519T185338Z:f1cddd98-352d-4da1-b4b1-7c4380c56783" + "x-ms-correlation-request-id": "4da7c615-28a4-4794-b6f6-66804519985f", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "4da7c615-28a4-4794-b6f6-66804519985f", + "x-ms-routing-request-id": "WESTUS2:20210616T001758Z:4da7c615-28a4-4794-b6f6-66804519985f" }, "ResponseBody": [] }, @@ -6817,7 +6960,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc3effc9b5062678a5b3955e55c4ea10", "x-ms-return-client-request-id": "true" }, @@ -6826,17 +6969,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:38 GMT", + "Date": "Wed, 16 Jun 2021 00:17:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b3672940-844e-4f22-b216-13b7317f1b65", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-request-id": "b3672940-844e-4f22-b216-13b7317f1b65", - "x-ms-routing-request-id": "WESTUS2:20210519T185339Z:b3672940-844e-4f22-b216-13b7317f1b65" + "x-ms-correlation-request-id": "4c3aadf9-5597-44f2-b3f5-e478718cd0ce", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "4c3aadf9-5597-44f2-b3f5-e478718cd0ce", + "x-ms-routing-request-id": "WESTUS2:20210616T001759Z:4c3aadf9-5597-44f2-b3f5-e478718cd0ce" }, "ResponseBody": [] }, @@ -6845,7 +6988,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cfce68f87e4bad566c0a67ed91bde545", "x-ms-return-client-request-id": "true" }, @@ -6854,17 +6997,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:39 GMT", + "Date": "Wed, 16 Jun 2021 00:18:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "727ca896-e6f8-4b8a-9560-df478541be02", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-request-id": "727ca896-e6f8-4b8a-9560-df478541be02", - "x-ms-routing-request-id": "WESTUS2:20210519T185340Z:727ca896-e6f8-4b8a-9560-df478541be02" + "x-ms-correlation-request-id": "1583dfd1-8a3b-40ae-b3da-1fece8e0a2d7", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "1583dfd1-8a3b-40ae-b3da-1fece8e0a2d7", + "x-ms-routing-request-id": "WESTUS2:20210616T001800Z:1583dfd1-8a3b-40ae-b3da-1fece8e0a2d7" }, "ResponseBody": [] }, @@ -6873,7 +7016,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4beec00dbef956c27da1a644bf0fc243", "x-ms-return-client-request-id": "true" }, @@ -6882,17 +7025,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:40 GMT", + "Date": "Wed, 16 Jun 2021 00:18:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d45cc027-da6e-4ee3-b2a9-ff6e34848825", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-request-id": "d45cc027-da6e-4ee3-b2a9-ff6e34848825", - "x-ms-routing-request-id": "WESTUS2:20210519T185341Z:d45cc027-da6e-4ee3-b2a9-ff6e34848825" + "x-ms-correlation-request-id": "9c888d94-15f2-4f22-899e-d72003f86769", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "9c888d94-15f2-4f22-899e-d72003f86769", + "x-ms-routing-request-id": "WESTUS2:20210616T001801Z:9c888d94-15f2-4f22-899e-d72003f86769" }, "ResponseBody": [] }, @@ -6901,7 +7044,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb32937636cc4b14a9904ffb4e8a94e7", "x-ms-return-client-request-id": "true" }, @@ -6910,17 +7053,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:41 GMT", + "Date": "Wed, 16 Jun 2021 00:18:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3da82b4a-b584-4aab-8552-8fdb14ce6321", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-request-id": "3da82b4a-b584-4aab-8552-8fdb14ce6321", - "x-ms-routing-request-id": "WESTUS2:20210519T185342Z:3da82b4a-b584-4aab-8552-8fdb14ce6321" + "x-ms-correlation-request-id": "f49ca2ae-29c8-429b-882f-c8374c785c46", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "f49ca2ae-29c8-429b-882f-c8374c785c46", + "x-ms-routing-request-id": "WESTUS2:20210616T001802Z:f49ca2ae-29c8-429b-882f-c8374c785c46" }, "ResponseBody": [] }, @@ -6929,7 +7072,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "945050ce9ed63a17a67751a9d712ed5d", "x-ms-return-client-request-id": "true" }, @@ -6938,17 +7081,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:42 GMT", + "Date": "Wed, 16 Jun 2021 00:18:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d801d52d-3f03-47ad-aeea-8993f805756e", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "d801d52d-3f03-47ad-aeea-8993f805756e", - "x-ms-routing-request-id": "WESTUS2:20210519T185343Z:d801d52d-3f03-47ad-aeea-8993f805756e" + "x-ms-correlation-request-id": "53b5d3ad-34e6-4f11-972a-dfbb65dbe11d", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "53b5d3ad-34e6-4f11-972a-dfbb65dbe11d", + "x-ms-routing-request-id": "WESTUS2:20210616T001803Z:53b5d3ad-34e6-4f11-972a-dfbb65dbe11d" }, "ResponseBody": [] }, @@ -6957,7 +7100,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fe762348ea8bd679aca2a2686ec608f2", "x-ms-return-client-request-id": "true" }, @@ -6966,17 +7109,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:43 GMT", + "Date": "Wed, 16 Jun 2021 00:18:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e25b428d-a58a-4cb4-88d7-c75487e788cc", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "e25b428d-a58a-4cb4-88d7-c75487e788cc", - "x-ms-routing-request-id": "WESTUS2:20210519T185344Z:e25b428d-a58a-4cb4-88d7-c75487e788cc" + "x-ms-correlation-request-id": "7ddf0b27-28df-4cb8-ad88-71a9ac27a067", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "7ddf0b27-28df-4cb8-ad88-71a9ac27a067", + "x-ms-routing-request-id": "WESTUS2:20210616T001804Z:7ddf0b27-28df-4cb8-ad88-71a9ac27a067" }, "ResponseBody": [] }, @@ -6985,7 +7128,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f75be0d2ebed86d7bf75454e56b7397", "x-ms-return-client-request-id": "true" }, @@ -6994,17 +7137,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:44 GMT", + "Date": "Wed, 16 Jun 2021 00:18:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f08cae39-9216-42fa-9090-036106bbeca8", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "f08cae39-9216-42fa-9090-036106bbeca8", - "x-ms-routing-request-id": "WESTUS2:20210519T185345Z:f08cae39-9216-42fa-9090-036106bbeca8" + "x-ms-correlation-request-id": "de7eb5c2-90a1-4c46-afac-50424b23f7f8", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "de7eb5c2-90a1-4c46-afac-50424b23f7f8", + "x-ms-routing-request-id": "WESTUS2:20210616T001805Z:de7eb5c2-90a1-4c46-afac-50424b23f7f8" }, "ResponseBody": [] }, @@ -7013,7 +7156,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bb3f2a39614e45cd679e733fbafcbdf", "x-ms-return-client-request-id": "true" }, @@ -7022,17 +7165,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:45 GMT", + "Date": "Wed, 16 Jun 2021 00:18:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "985b24a3-af72-4b88-ba72-a9f191c97e97", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "985b24a3-af72-4b88-ba72-a9f191c97e97", - "x-ms-routing-request-id": "WESTUS2:20210519T185346Z:985b24a3-af72-4b88-ba72-a9f191c97e97" + "x-ms-correlation-request-id": "26d05d75-725f-40ad-9e43-ca4845af677a", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "26d05d75-725f-40ad-9e43-ca4845af677a", + "x-ms-routing-request-id": "WESTUS2:20210616T001806Z:26d05d75-725f-40ad-9e43-ca4845af677a" }, "ResponseBody": [] }, @@ -7041,7 +7184,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "199c5e6f7e9c1a9eb69d82939524f141", "x-ms-return-client-request-id": "true" }, @@ -7050,17 +7193,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:47 GMT", + "Date": "Wed, 16 Jun 2021 00:18:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e857a04e-70b8-4c93-9f35-1c1ae23c0238", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "e857a04e-70b8-4c93-9f35-1c1ae23c0238", - "x-ms-routing-request-id": "WESTUS2:20210519T185347Z:e857a04e-70b8-4c93-9f35-1c1ae23c0238" + "x-ms-correlation-request-id": "b70c5d80-edc4-4790-993e-3b61a301b610", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b70c5d80-edc4-4790-993e-3b61a301b610", + "x-ms-routing-request-id": "WESTUS2:20210616T001807Z:b70c5d80-edc4-4790-993e-3b61a301b610" }, "ResponseBody": [] }, @@ -7069,7 +7212,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cc40b2fdc1376de619099444639ddcc", "x-ms-return-client-request-id": "true" }, @@ -7078,17 +7221,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:48 GMT", + "Date": "Wed, 16 Jun 2021 00:18:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "af2c004e-c393-41e5-ad20-d85e7a7a08ce", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "af2c004e-c393-41e5-ad20-d85e7a7a08ce", - "x-ms-routing-request-id": "WESTUS2:20210519T185348Z:af2c004e-c393-41e5-ad20-d85e7a7a08ce" + "x-ms-correlation-request-id": "589edc96-2506-4f51-bf4f-261a96c7adff", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "589edc96-2506-4f51-bf4f-261a96c7adff", + "x-ms-routing-request-id": "WESTUS2:20210616T001808Z:589edc96-2506-4f51-bf4f-261a96c7adff" }, "ResponseBody": [] }, @@ -7097,7 +7240,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86e5752b59ce25fa5398747714c84fb1", "x-ms-return-client-request-id": "true" }, @@ -7106,17 +7249,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:49 GMT", + "Date": "Wed, 16 Jun 2021 00:18:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1ae1326-9195-4d08-9a4a-909103fb4395", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "c1ae1326-9195-4d08-9a4a-909103fb4395", - "x-ms-routing-request-id": "WESTUS2:20210519T185349Z:c1ae1326-9195-4d08-9a4a-909103fb4395" + "x-ms-correlation-request-id": "490db382-5939-4ca5-a1c3-13200df030ea", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "490db382-5939-4ca5-a1c3-13200df030ea", + "x-ms-routing-request-id": "WESTUS2:20210616T001809Z:490db382-5939-4ca5-a1c3-13200df030ea" }, "ResponseBody": [] }, @@ -7125,7 +7268,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f004a6884fea92cc8025b70ce459d47c", "x-ms-return-client-request-id": "true" }, @@ -7134,17 +7277,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:50 GMT", + "Date": "Wed, 16 Jun 2021 00:18:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7d4ed57b-0a9a-460a-82fd-597cf5229742", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "7d4ed57b-0a9a-460a-82fd-597cf5229742", - "x-ms-routing-request-id": "WESTUS2:20210519T185350Z:7d4ed57b-0a9a-460a-82fd-597cf5229742" + "x-ms-correlation-request-id": "5939b907-a16d-4808-9b08-8fc3bb1c33ae", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "5939b907-a16d-4808-9b08-8fc3bb1c33ae", + "x-ms-routing-request-id": "WESTUS2:20210616T001811Z:5939b907-a16d-4808-9b08-8fc3bb1c33ae" }, "ResponseBody": [] }, @@ -7153,7 +7296,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f67b6c06b3fd572109f287a67676299", "x-ms-return-client-request-id": "true" }, @@ -7162,17 +7305,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:51 GMT", + "Date": "Wed, 16 Jun 2021 00:18:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "05bd5cf9-4170-41f4-8c4a-e4d1939f53dc", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "05bd5cf9-4170-41f4-8c4a-e4d1939f53dc", - "x-ms-routing-request-id": "WESTUS2:20210519T185351Z:05bd5cf9-4170-41f4-8c4a-e4d1939f53dc" + "x-ms-correlation-request-id": "08dce736-be79-4474-9341-f5a96bb73c64", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "08dce736-be79-4474-9341-f5a96bb73c64", + "x-ms-routing-request-id": "WESTUS2:20210616T001812Z:08dce736-be79-4474-9341-f5a96bb73c64" }, "ResponseBody": [] }, @@ -7181,7 +7324,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0bce740ec34dce2a85305a9a2ee40fa", "x-ms-return-client-request-id": "true" }, @@ -7190,17 +7333,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:52 GMT", + "Date": "Wed, 16 Jun 2021 00:18:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a3993783-2565-45d4-830d-c8bf093ae21d", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "a3993783-2565-45d4-830d-c8bf093ae21d", - "x-ms-routing-request-id": "WESTUS2:20210519T185352Z:a3993783-2565-45d4-830d-c8bf093ae21d" + "x-ms-correlation-request-id": "96ca979c-e954-4cf8-b99a-9d7c3f41d6de", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "96ca979c-e954-4cf8-b99a-9d7c3f41d6de", + "x-ms-routing-request-id": "WESTUS2:20210616T001813Z:96ca979c-e954-4cf8-b99a-9d7c3f41d6de" }, "ResponseBody": [] }, @@ -7209,7 +7352,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb6f8c42f601c72342fdf4a27522a19", "x-ms-return-client-request-id": "true" }, @@ -7218,17 +7361,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:53 GMT", + "Date": "Wed, 16 Jun 2021 00:18:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c274269-c760-4841-8b5d-d6337b3a5c98", - "x-ms-ratelimit-remaining-subscription-reads": "11706", - "x-ms-request-id": "2c274269-c760-4841-8b5d-d6337b3a5c98", - "x-ms-routing-request-id": "WESTUS2:20210519T185353Z:2c274269-c760-4841-8b5d-d6337b3a5c98" + "x-ms-correlation-request-id": "1d86b9f7-d532-4a16-9e50-eb4b4b64da3a", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "1d86b9f7-d532-4a16-9e50-eb4b4b64da3a", + "x-ms-routing-request-id": "WESTUS2:20210616T001814Z:1d86b9f7-d532-4a16-9e50-eb4b4b64da3a" }, "ResponseBody": [] }, @@ -7237,7 +7380,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fdcb1ec3349cd347d38b77eb66c93222", "x-ms-return-client-request-id": "true" }, @@ -7246,17 +7389,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:54 GMT", + "Date": "Wed, 16 Jun 2021 00:18:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c5c84abf-4bed-4d46-a0c1-d63864b5f2e6", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "c5c84abf-4bed-4d46-a0c1-d63864b5f2e6", - "x-ms-routing-request-id": "WESTUS2:20210519T185354Z:c5c84abf-4bed-4d46-a0c1-d63864b5f2e6" + "x-ms-correlation-request-id": "b9dbc4b2-10eb-49a1-8aec-c44adc8b0254", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "b9dbc4b2-10eb-49a1-8aec-c44adc8b0254", + "x-ms-routing-request-id": "WESTUS2:20210616T001815Z:b9dbc4b2-10eb-49a1-8aec-c44adc8b0254" }, "ResponseBody": [] }, @@ -7265,7 +7408,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fb52e5f04b0113875a06c050d97b456", "x-ms-return-client-request-id": "true" }, @@ -7274,17 +7417,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:55 GMT", + "Date": "Wed, 16 Jun 2021 00:18:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5a195add-95d1-4bbf-b21d-37bfa9f7a439", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "5a195add-95d1-4bbf-b21d-37bfa9f7a439", - "x-ms-routing-request-id": "WESTUS2:20210519T185356Z:5a195add-95d1-4bbf-b21d-37bfa9f7a439" + "x-ms-correlation-request-id": "f0151e04-c37a-4c8e-97d5-044a90bbf0f9", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "f0151e04-c37a-4c8e-97d5-044a90bbf0f9", + "x-ms-routing-request-id": "WESTUS2:20210616T001816Z:f0151e04-c37a-4c8e-97d5-044a90bbf0f9" }, "ResponseBody": [] }, @@ -7293,7 +7436,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83e5eb294323905db0e28ad5b886b56a", "x-ms-return-client-request-id": "true" }, @@ -7302,17 +7445,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:56 GMT", + "Date": "Wed, 16 Jun 2021 00:18:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "06f127c0-f078-4646-aa1c-84615f8aea22", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "06f127c0-f078-4646-aa1c-84615f8aea22", - "x-ms-routing-request-id": "WESTUS2:20210519T185357Z:06f127c0-f078-4646-aa1c-84615f8aea22" + "x-ms-correlation-request-id": "c7a67d22-79cc-4697-a5b7-e9fab5529f05", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "c7a67d22-79cc-4697-a5b7-e9fab5529f05", + "x-ms-routing-request-id": "WESTUS2:20210616T001817Z:c7a67d22-79cc-4697-a5b7-e9fab5529f05" }, "ResponseBody": [] }, @@ -7321,7 +7464,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9ebbcfcba9cbe68e6b987fcc842c53c", "x-ms-return-client-request-id": "true" }, @@ -7330,17 +7473,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:57 GMT", + "Date": "Wed, 16 Jun 2021 00:18:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "632d3b8f-9f66-49b0-a8d5-1c337d424e58", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "632d3b8f-9f66-49b0-a8d5-1c337d424e58", - "x-ms-routing-request-id": "WESTUS2:20210519T185358Z:632d3b8f-9f66-49b0-a8d5-1c337d424e58" + "x-ms-correlation-request-id": "83e59376-93e4-42d9-9e47-261ce6d47bcf", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "83e59376-93e4-42d9-9e47-261ce6d47bcf", + "x-ms-routing-request-id": "WESTUS2:20210616T001818Z:83e59376-93e4-42d9-9e47-261ce6d47bcf" }, "ResponseBody": [] }, @@ -7349,7 +7492,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ac220d7afe31bffd025bfce7a6358ef", "x-ms-return-client-request-id": "true" }, @@ -7358,17 +7501,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:58 GMT", + "Date": "Wed, 16 Jun 2021 00:18:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c04f0bb0-16fb-42d8-902b-695a97ed9e6e", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "c04f0bb0-16fb-42d8-902b-695a97ed9e6e", - "x-ms-routing-request-id": "WESTUS2:20210519T185359Z:c04f0bb0-16fb-42d8-902b-695a97ed9e6e" + "x-ms-correlation-request-id": "8d8ea3f4-9c7f-4117-91c6-30cbd4afa851", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "8d8ea3f4-9c7f-4117-91c6-30cbd4afa851", + "x-ms-routing-request-id": "WESTUS2:20210616T001819Z:8d8ea3f4-9c7f-4117-91c6-30cbd4afa851" }, "ResponseBody": [] }, @@ -7377,7 +7520,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "510801eabaac6eba83279d69bb60c86d", "x-ms-return-client-request-id": "true" }, @@ -7386,17 +7529,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:59 GMT", + "Date": "Wed, 16 Jun 2021 00:18:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "be716537-7d81-44cd-8c13-bcbf6e5f921d", - "x-ms-ratelimit-remaining-subscription-reads": "11694", - "x-ms-request-id": "be716537-7d81-44cd-8c13-bcbf6e5f921d", - "x-ms-routing-request-id": "WESTUS2:20210519T185400Z:be716537-7d81-44cd-8c13-bcbf6e5f921d" + "x-ms-correlation-request-id": "0e35ccfa-90d3-4b26-9e08-e75adbc7bc55", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "0e35ccfa-90d3-4b26-9e08-e75adbc7bc55", + "x-ms-routing-request-id": "WESTUS2:20210616T001820Z:0e35ccfa-90d3-4b26-9e08-e75adbc7bc55" }, "ResponseBody": [] }, @@ -7405,7 +7548,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97fd4d1c3bc34d87bdcf2877fb9a4483", "x-ms-return-client-request-id": "true" }, @@ -7414,17 +7557,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:00 GMT", + "Date": "Wed, 16 Jun 2021 00:18:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e7278537-3ed4-41b5-b71d-b02b02d92a95", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "e7278537-3ed4-41b5-b71d-b02b02d92a95", - "x-ms-routing-request-id": "WESTUS2:20210519T185401Z:e7278537-3ed4-41b5-b71d-b02b02d92a95" + "x-ms-correlation-request-id": "ae353e76-1563-4938-88a9-d184b06ec168", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ae353e76-1563-4938-88a9-d184b06ec168", + "x-ms-routing-request-id": "WESTUS2:20210616T001821Z:ae353e76-1563-4938-88a9-d184b06ec168" }, "ResponseBody": [] }, @@ -7433,7 +7576,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c611986074391c906654f7bc12966070", "x-ms-return-client-request-id": "true" }, @@ -7442,17 +7585,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:01 GMT", + "Date": "Wed, 16 Jun 2021 00:18:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8525cdd1-bd3f-4186-ad53-0d7faeb64175", - "x-ms-ratelimit-remaining-subscription-reads": "11690", - "x-ms-request-id": "8525cdd1-bd3f-4186-ad53-0d7faeb64175", - "x-ms-routing-request-id": "WESTUS2:20210519T185402Z:8525cdd1-bd3f-4186-ad53-0d7faeb64175" + "x-ms-correlation-request-id": "5a132182-646f-475c-8fff-847cce2680d7", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "5a132182-646f-475c-8fff-847cce2680d7", + "x-ms-routing-request-id": "WESTUS2:20210616T001822Z:5a132182-646f-475c-8fff-847cce2680d7" }, "ResponseBody": [] }, @@ -7461,7 +7604,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cb1515cc165af2b79bb94dc924373e8", "x-ms-return-client-request-id": "true" }, @@ -7470,17 +7613,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:02 GMT", + "Date": "Wed, 16 Jun 2021 00:18:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0", - "x-ms-ratelimit-remaining-subscription-reads": "11688", - "x-ms-request-id": "c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0", - "x-ms-routing-request-id": "WESTUS2:20210519T185403Z:c869cfc6-8481-4ebd-9ca8-b51bfcf98fa0" + "x-ms-correlation-request-id": "3845ea3b-bd10-4f0d-badb-1a6e532a85e9", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "3845ea3b-bd10-4f0d-badb-1a6e532a85e9", + "x-ms-routing-request-id": "WESTUS2:20210616T001823Z:3845ea3b-bd10-4f0d-badb-1a6e532a85e9" }, "ResponseBody": [] }, @@ -7489,7 +7632,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "230819e2014ea733bde1316f43cb3a27", "x-ms-return-client-request-id": "true" }, @@ -7498,17 +7641,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:03 GMT", + "Date": "Wed, 16 Jun 2021 00:18:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cdea1fb7-fb0c-418e-a25e-4f1316635391", - "x-ms-ratelimit-remaining-subscription-reads": "11686", - "x-ms-request-id": "cdea1fb7-fb0c-418e-a25e-4f1316635391", - "x-ms-routing-request-id": "WESTUS2:20210519T185404Z:cdea1fb7-fb0c-418e-a25e-4f1316635391" + "x-ms-correlation-request-id": "38a334f2-5586-4da2-ac72-852748f3fe12", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "38a334f2-5586-4da2-ac72-852748f3fe12", + "x-ms-routing-request-id": "WESTUS2:20210616T001824Z:38a334f2-5586-4da2-ac72-852748f3fe12" }, "ResponseBody": [] }, @@ -7517,7 +7660,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a91ab86f18e99f1e6c624d7ee0b38923", "x-ms-return-client-request-id": "true" }, @@ -7526,17 +7669,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:04 GMT", + "Date": "Wed, 16 Jun 2021 00:18:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f2dcea79-a2b4-496a-8a36-828a3d57e179", - "x-ms-ratelimit-remaining-subscription-reads": "11684", - "x-ms-request-id": "f2dcea79-a2b4-496a-8a36-828a3d57e179", - "x-ms-routing-request-id": "WESTUS2:20210519T185405Z:f2dcea79-a2b4-496a-8a36-828a3d57e179" + "x-ms-correlation-request-id": "c9b4b21a-1704-4fa7-abb2-f5fe83a22203", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "c9b4b21a-1704-4fa7-abb2-f5fe83a22203", + "x-ms-routing-request-id": "WESTUS2:20210616T001825Z:c9b4b21a-1704-4fa7-abb2-f5fe83a22203" }, "ResponseBody": [] }, @@ -7545,7 +7688,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8d90ee03c8d5a211e096f8390bc6bad", "x-ms-return-client-request-id": "true" }, @@ -7554,17 +7697,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:06 GMT", + "Date": "Wed, 16 Jun 2021 00:18:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1", - "x-ms-ratelimit-remaining-subscription-reads": "11682", - "x-ms-request-id": "9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1", - "x-ms-routing-request-id": "WESTUS2:20210519T185406Z:9d8d39c7-3a51-4d10-ac8a-c431c39ecbb1" + "x-ms-correlation-request-id": "31a410a7-91b4-4c27-9b91-9dff17b31a65", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "31a410a7-91b4-4c27-9b91-9dff17b31a65", + "x-ms-routing-request-id": "WESTUS2:20210616T001826Z:31a410a7-91b4-4c27-9b91-9dff17b31a65" }, "ResponseBody": [] }, @@ -7573,7 +7716,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d96d6c80ca28cafffb68b6ecb3b5c709", "x-ms-return-client-request-id": "true" }, @@ -7582,17 +7725,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:07 GMT", + "Date": "Wed, 16 Jun 2021 00:18:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b9205026-29fb-4b62-909e-4e7dc54ed7c4", - "x-ms-ratelimit-remaining-subscription-reads": "11680", - "x-ms-request-id": "b9205026-29fb-4b62-909e-4e7dc54ed7c4", - "x-ms-routing-request-id": "WESTUS2:20210519T185407Z:b9205026-29fb-4b62-909e-4e7dc54ed7c4" + "x-ms-correlation-request-id": "ddc579c9-cb0d-4793-a064-45135a222f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "ddc579c9-cb0d-4793-a064-45135a222f9d", + "x-ms-routing-request-id": "WESTUS2:20210616T001827Z:ddc579c9-cb0d-4793-a064-45135a222f9d" }, "ResponseBody": [] }, @@ -7601,7 +7744,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "358e0d5742f1329997bf8adfa89a0fb0", "x-ms-return-client-request-id": "true" }, @@ -7610,17 +7753,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:08 GMT", + "Date": "Wed, 16 Jun 2021 00:18:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a1300d07-7560-4183-881e-72ba0da16c52", - "x-ms-ratelimit-remaining-subscription-reads": "11678", - "x-ms-request-id": "a1300d07-7560-4183-881e-72ba0da16c52", - "x-ms-routing-request-id": "WESTUS2:20210519T185408Z:a1300d07-7560-4183-881e-72ba0da16c52" + "x-ms-correlation-request-id": "9138d43f-e59c-4be1-83a7-9037895fa6ad", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "9138d43f-e59c-4be1-83a7-9037895fa6ad", + "x-ms-routing-request-id": "WESTUS2:20210616T001828Z:9138d43f-e59c-4be1-83a7-9037895fa6ad" }, "ResponseBody": [] }, @@ -7629,7 +7772,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73fea0f7b04616fa0f0ffc258634a669", "x-ms-return-client-request-id": "true" }, @@ -7638,17 +7781,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:09 GMT", + "Date": "Wed, 16 Jun 2021 00:18:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "40911616-beec-4cac-82a0-5fe94f25b8cd", - "x-ms-ratelimit-remaining-subscription-reads": "11676", - "x-ms-request-id": "40911616-beec-4cac-82a0-5fe94f25b8cd", - "x-ms-routing-request-id": "WESTUS2:20210519T185409Z:40911616-beec-4cac-82a0-5fe94f25b8cd" + "x-ms-correlation-request-id": "cdd72167-8ec5-4487-88b9-ad52c56bca47", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "cdd72167-8ec5-4487-88b9-ad52c56bca47", + "x-ms-routing-request-id": "WESTUS2:20210616T001829Z:cdd72167-8ec5-4487-88b9-ad52c56bca47" }, "ResponseBody": [] }, @@ -7657,7 +7800,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "822b6642362d3dbbd33a42683f1f2160", "x-ms-return-client-request-id": "true" }, @@ -7666,17 +7809,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:10 GMT", + "Date": "Wed, 16 Jun 2021 00:18:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fc367d90-ad96-48ed-a985-26dcb11f2171", - "x-ms-ratelimit-remaining-subscription-reads": "11674", - "x-ms-request-id": "fc367d90-ad96-48ed-a985-26dcb11f2171", - "x-ms-routing-request-id": "WESTUS2:20210519T185410Z:fc367d90-ad96-48ed-a985-26dcb11f2171" + "x-ms-correlation-request-id": "4d172144-43a3-490d-b43d-6d79c476620b", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "4d172144-43a3-490d-b43d-6d79c476620b", + "x-ms-routing-request-id": "WESTUS2:20210616T001830Z:4d172144-43a3-490d-b43d-6d79c476620b" }, "ResponseBody": [] }, @@ -7685,7 +7828,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13f4055953b7a7c2127725e24574ac62", "x-ms-return-client-request-id": "true" }, @@ -7694,17 +7837,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:11 GMT", + "Date": "Wed, 16 Jun 2021 00:18:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b06c0c6c-a1e3-44af-bb35-4044a96d972e", - "x-ms-ratelimit-remaining-subscription-reads": "11672", - "x-ms-request-id": "b06c0c6c-a1e3-44af-bb35-4044a96d972e", - "x-ms-routing-request-id": "WESTUS2:20210519T185411Z:b06c0c6c-a1e3-44af-bb35-4044a96d972e" + "x-ms-correlation-request-id": "d87b0b7e-9998-40d7-b60f-2394d6e4aa28", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "d87b0b7e-9998-40d7-b60f-2394d6e4aa28", + "x-ms-routing-request-id": "WESTUS2:20210616T001831Z:d87b0b7e-9998-40d7-b60f-2394d6e4aa28" }, "ResponseBody": [] }, @@ -7713,7 +7856,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "429d21188c6fc183e4c0a00c6d92d7ef", "x-ms-return-client-request-id": "true" }, @@ -7722,17 +7865,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:12 GMT", + "Date": "Wed, 16 Jun 2021 00:18:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dec11dff-4e37-4203-9cd9-453995efc908", - "x-ms-ratelimit-remaining-subscription-reads": "11670", - "x-ms-request-id": "dec11dff-4e37-4203-9cd9-453995efc908", - "x-ms-routing-request-id": "WESTUS2:20210519T185412Z:dec11dff-4e37-4203-9cd9-453995efc908" + "x-ms-correlation-request-id": "d06c8487-37e8-4cb4-be61-64577183bf5d", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "d06c8487-37e8-4cb4-be61-64577183bf5d", + "x-ms-routing-request-id": "WESTUS2:20210616T001832Z:d06c8487-37e8-4cb4-be61-64577183bf5d" }, "ResponseBody": [] }, @@ -7741,7 +7884,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80cb9cee933feeb2a48470b510d9f85e", "x-ms-return-client-request-id": "true" }, @@ -7750,17 +7893,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:13 GMT", + "Date": "Wed, 16 Jun 2021 00:18:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ba89d70a-eb8c-4a3c-b4dd-52b5ab723474", - "x-ms-ratelimit-remaining-subscription-reads": "11668", - "x-ms-request-id": "ba89d70a-eb8c-4a3c-b4dd-52b5ab723474", - "x-ms-routing-request-id": "WESTUS2:20210519T185413Z:ba89d70a-eb8c-4a3c-b4dd-52b5ab723474" + "x-ms-correlation-request-id": "c87094e3-621d-4045-8ca8-bf4f8c214d3f", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "c87094e3-621d-4045-8ca8-bf4f8c214d3f", + "x-ms-routing-request-id": "WESTUS2:20210616T001833Z:c87094e3-621d-4045-8ca8-bf4f8c214d3f" }, "ResponseBody": [] }, @@ -7769,7 +7912,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e4fdf8ddf82ccf182332ff6b3b53980", "x-ms-return-client-request-id": "true" }, @@ -7778,17 +7921,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:14 GMT", + "Date": "Wed, 16 Jun 2021 00:18:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1800534e-5337-420d-9ea0-cf458f07a636", - "x-ms-ratelimit-remaining-subscription-reads": "11666", - "x-ms-request-id": "1800534e-5337-420d-9ea0-cf458f07a636", - "x-ms-routing-request-id": "WESTUS2:20210519T185414Z:1800534e-5337-420d-9ea0-cf458f07a636" + "x-ms-correlation-request-id": "a594031d-b471-4f99-a80a-b830195e0de8", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "a594031d-b471-4f99-a80a-b830195e0de8", + "x-ms-routing-request-id": "WESTUS2:20210616T001834Z:a594031d-b471-4f99-a80a-b830195e0de8" }, "ResponseBody": [] }, @@ -7797,7 +7940,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9f335a02ca885226faf9eeb1ccdb00a", "x-ms-return-client-request-id": "true" }, @@ -7806,17 +7949,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:15 GMT", + "Date": "Wed, 16 Jun 2021 00:18:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0593b10b-ed53-43dd-ba6a-8bf8d598b763", - "x-ms-ratelimit-remaining-subscription-reads": "11664", - "x-ms-request-id": "0593b10b-ed53-43dd-ba6a-8bf8d598b763", - "x-ms-routing-request-id": "WESTUS2:20210519T185415Z:0593b10b-ed53-43dd-ba6a-8bf8d598b763" + "x-ms-correlation-request-id": "e8539460-901b-433d-8709-53320b009837", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "e8539460-901b-433d-8709-53320b009837", + "x-ms-routing-request-id": "WESTUS2:20210616T001835Z:e8539460-901b-433d-8709-53320b009837" }, "ResponseBody": [] }, @@ -7825,7 +7968,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e7f41c7b9420f6daafffd0c63bb3bee", "x-ms-return-client-request-id": "true" }, @@ -7834,17 +7977,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:16 GMT", + "Date": "Wed, 16 Jun 2021 00:18:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8b9c35a5-c67f-4aca-a140-87021aa54dfc", - "x-ms-ratelimit-remaining-subscription-reads": "11662", - "x-ms-request-id": "8b9c35a5-c67f-4aca-a140-87021aa54dfc", - "x-ms-routing-request-id": "WESTUS2:20210519T185416Z:8b9c35a5-c67f-4aca-a140-87021aa54dfc" + "x-ms-correlation-request-id": "08b82060-c19f-4c02-9d2e-c3c55d3dcec9", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "08b82060-c19f-4c02-9d2e-c3c55d3dcec9", + "x-ms-routing-request-id": "WESTUS2:20210616T001836Z:08b82060-c19f-4c02-9d2e-c3c55d3dcec9" }, "ResponseBody": [] }, @@ -7853,7 +7996,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db15ef4a4ee560b6bdcaaed34006b0b4", "x-ms-return-client-request-id": "true" }, @@ -7862,17 +8005,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:17 GMT", + "Date": "Wed, 16 Jun 2021 00:18:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ad9e3337-279c-4228-ba9f-74e6dd95eb70", - "x-ms-ratelimit-remaining-subscription-reads": "11660", - "x-ms-request-id": "ad9e3337-279c-4228-ba9f-74e6dd95eb70", - "x-ms-routing-request-id": "WESTUS2:20210519T185417Z:ad9e3337-279c-4228-ba9f-74e6dd95eb70" + "x-ms-correlation-request-id": "281b7e40-bfa7-47a1-9984-b7cde54d84ff", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "281b7e40-bfa7-47a1-9984-b7cde54d84ff", + "x-ms-routing-request-id": "WESTUS2:20210616T001837Z:281b7e40-bfa7-47a1-9984-b7cde54d84ff" }, "ResponseBody": [] }, @@ -7881,7 +8024,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "722f2483ab36e73ec7e4fea92e1621b3", "x-ms-return-client-request-id": "true" }, @@ -7890,17 +8033,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:18 GMT", + "Date": "Wed, 16 Jun 2021 00:18:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "41710815-25fd-4043-b1c3-9fe39867a7f1", - "x-ms-ratelimit-remaining-subscription-reads": "11658", - "x-ms-request-id": "41710815-25fd-4043-b1c3-9fe39867a7f1", - "x-ms-routing-request-id": "WESTUS2:20210519T185418Z:41710815-25fd-4043-b1c3-9fe39867a7f1" + "x-ms-correlation-request-id": "0851074f-ed5f-4e9c-a11f-de2fffa64919", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "0851074f-ed5f-4e9c-a11f-de2fffa64919", + "x-ms-routing-request-id": "WESTUS2:20210616T001839Z:0851074f-ed5f-4e9c-a11f-de2fffa64919" }, "ResponseBody": [] }, @@ -7909,7 +8052,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2da0af73d5b879258b1ed1770a9acea4", "x-ms-return-client-request-id": "true" }, @@ -7918,17 +8061,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:19 GMT", + "Date": "Wed, 16 Jun 2021 00:18:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0a72d3fd-1f89-47bf-8d15-6b8d1a00225f", - "x-ms-ratelimit-remaining-subscription-reads": "11656", - "x-ms-request-id": "0a72d3fd-1f89-47bf-8d15-6b8d1a00225f", - "x-ms-routing-request-id": "WESTUS2:20210519T185419Z:0a72d3fd-1f89-47bf-8d15-6b8d1a00225f" + "x-ms-correlation-request-id": "72d529d5-3382-4745-b489-20f4f5814b86", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "72d529d5-3382-4745-b489-20f4f5814b86", + "x-ms-routing-request-id": "WESTUS2:20210616T001840Z:72d529d5-3382-4745-b489-20f4f5814b86" }, "ResponseBody": [] }, @@ -7937,7 +8080,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f89484ec88c9fb8b02d1300500c32a6", "x-ms-return-client-request-id": "true" }, @@ -7946,17 +8089,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:20 GMT", + "Date": "Wed, 16 Jun 2021 00:18:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9c7c996e-28f2-4a53-a20b-8b581cb94fa9", - "x-ms-ratelimit-remaining-subscription-reads": "11654", - "x-ms-request-id": "9c7c996e-28f2-4a53-a20b-8b581cb94fa9", - "x-ms-routing-request-id": "WESTUS2:20210519T185420Z:9c7c996e-28f2-4a53-a20b-8b581cb94fa9" + "x-ms-correlation-request-id": "63a5de21-acb6-48b5-bacf-1fee8d96a86e", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "63a5de21-acb6-48b5-bacf-1fee8d96a86e", + "x-ms-routing-request-id": "WESTUS2:20210616T001841Z:63a5de21-acb6-48b5-bacf-1fee8d96a86e" }, "ResponseBody": [] }, @@ -7965,7 +8108,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "915ffaa88265adfcfeb5e718dac6dd2d", "x-ms-return-client-request-id": "true" }, @@ -7974,17 +8117,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:21 GMT", + "Date": "Wed, 16 Jun 2021 00:18:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "953ceea7-0287-4a2f-be9d-8ff207048c38", - "x-ms-ratelimit-remaining-subscription-reads": "11652", - "x-ms-request-id": "953ceea7-0287-4a2f-be9d-8ff207048c38", - "x-ms-routing-request-id": "WESTUS2:20210519T185421Z:953ceea7-0287-4a2f-be9d-8ff207048c38" + "x-ms-correlation-request-id": "ca5c63ad-6f79-44c1-becc-b3e90f49c302", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "ca5c63ad-6f79-44c1-becc-b3e90f49c302", + "x-ms-routing-request-id": "WESTUS2:20210616T001842Z:ca5c63ad-6f79-44c1-becc-b3e90f49c302" }, "ResponseBody": [] }, @@ -7993,7 +8136,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e55a5916e28dab27f7017c8ac224287e", "x-ms-return-client-request-id": "true" }, @@ -8002,17 +8145,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:22 GMT", + "Date": "Wed, 16 Jun 2021 00:18:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "02607a08-62cb-43f4-87bb-95ebc664dc9f", - "x-ms-ratelimit-remaining-subscription-reads": "11650", - "x-ms-request-id": "02607a08-62cb-43f4-87bb-95ebc664dc9f", - "x-ms-routing-request-id": "WESTUS2:20210519T185422Z:02607a08-62cb-43f4-87bb-95ebc664dc9f" + "x-ms-correlation-request-id": "883500e3-a87d-4261-b7b6-696308fae2d3", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "883500e3-a87d-4261-b7b6-696308fae2d3", + "x-ms-routing-request-id": "WESTUS2:20210616T001843Z:883500e3-a87d-4261-b7b6-696308fae2d3" }, "ResponseBody": [] }, @@ -8021,7 +8164,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fcf2aec3d3bcc3e4cdb40d6e1a0c4ea", "x-ms-return-client-request-id": "true" }, @@ -8030,17 +8173,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:23 GMT", + "Date": "Wed, 16 Jun 2021 00:18:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "12ed5e03-fd77-4adf-875f-68fa05382cd4", - "x-ms-ratelimit-remaining-subscription-reads": "11648", - "x-ms-request-id": "12ed5e03-fd77-4adf-875f-68fa05382cd4", - "x-ms-routing-request-id": "WESTUS2:20210519T185423Z:12ed5e03-fd77-4adf-875f-68fa05382cd4" + "x-ms-correlation-request-id": "32eb56d2-a738-45e0-b79b-b221b9fc9dd0", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "32eb56d2-a738-45e0-b79b-b221b9fc9dd0", + "x-ms-routing-request-id": "WESTUS2:20210616T001844Z:32eb56d2-a738-45e0-b79b-b221b9fc9dd0" }, "ResponseBody": [] }, @@ -8049,7 +8192,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6eae6504cb1c519d3b499640671ebda", "x-ms-return-client-request-id": "true" }, @@ -8058,17 +8201,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:24 GMT", + "Date": "Wed, 16 Jun 2021 00:18:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c34546df-58d9-40a0-8828-83e736c848fd", - "x-ms-ratelimit-remaining-subscription-reads": "11646", - "x-ms-request-id": "c34546df-58d9-40a0-8828-83e736c848fd", - "x-ms-routing-request-id": "WESTUS2:20210519T185424Z:c34546df-58d9-40a0-8828-83e736c848fd" + "x-ms-correlation-request-id": "42301dbb-2dfd-45ed-983a-1b44ca08abd1", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "42301dbb-2dfd-45ed-983a-1b44ca08abd1", + "x-ms-routing-request-id": "WESTUS2:20210616T001845Z:42301dbb-2dfd-45ed-983a-1b44ca08abd1" }, "ResponseBody": [] }, @@ -8077,7 +8220,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af2b688dcdf7d9f11b8e99b1a151c957", "x-ms-return-client-request-id": "true" }, @@ -8086,17 +8229,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:25 GMT", + "Date": "Wed, 16 Jun 2021 00:18:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cfd2b075-eb52-4146-8e27-efa30fb324bd", - "x-ms-ratelimit-remaining-subscription-reads": "11644", - "x-ms-request-id": "cfd2b075-eb52-4146-8e27-efa30fb324bd", - "x-ms-routing-request-id": "WESTUS2:20210519T185425Z:cfd2b075-eb52-4146-8e27-efa30fb324bd" + "x-ms-correlation-request-id": "ff6981fb-d036-4d32-8e98-2012d2795a96", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "ff6981fb-d036-4d32-8e98-2012d2795a96", + "x-ms-routing-request-id": "WESTUS2:20210616T001846Z:ff6981fb-d036-4d32-8e98-2012d2795a96" }, "ResponseBody": [] }, @@ -8105,7 +8248,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db3a923c32399fcc11093c87a3dac5da", "x-ms-return-client-request-id": "true" }, @@ -8114,17 +8257,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:26 GMT", + "Date": "Wed, 16 Jun 2021 00:18:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4", - "x-ms-ratelimit-remaining-subscription-reads": "11642", - "x-ms-request-id": "2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185426Z:2ec0eb2d-7ed1-4dc6-8c67-8aa0f16f76b4" + "x-ms-correlation-request-id": "10eea87a-fedd-45d6-b540-6548e52f3612", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "10eea87a-fedd-45d6-b540-6548e52f3612", + "x-ms-routing-request-id": "WESTUS2:20210616T001847Z:10eea87a-fedd-45d6-b540-6548e52f3612" }, "ResponseBody": [] }, @@ -8133,7 +8276,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "794966ef157482f3f411db23b2672382", "x-ms-return-client-request-id": "true" }, @@ -8142,17 +8285,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:27 GMT", + "Date": "Wed, 16 Jun 2021 00:18:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8d24d2c7-5f0b-4919-ad48-0ca16787682d", - "x-ms-ratelimit-remaining-subscription-reads": "11640", - "x-ms-request-id": "8d24d2c7-5f0b-4919-ad48-0ca16787682d", - "x-ms-routing-request-id": "WESTUS2:20210519T185428Z:8d24d2c7-5f0b-4919-ad48-0ca16787682d" + "x-ms-correlation-request-id": "e1fd4512-e786-45c5-ba97-fe2ae687855b", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "e1fd4512-e786-45c5-ba97-fe2ae687855b", + "x-ms-routing-request-id": "WESTUS2:20210616T001848Z:e1fd4512-e786-45c5-ba97-fe2ae687855b" }, "ResponseBody": [] }, @@ -8161,7 +8304,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "742741eb0f375aa09b8c9eed916a3540", "x-ms-return-client-request-id": "true" }, @@ -8170,17 +8313,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:28 GMT", + "Date": "Wed, 16 Jun 2021 00:18:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b6d97c71-c21c-4a7f-8fdb-cda13ed68735", - "x-ms-ratelimit-remaining-subscription-reads": "11638", - "x-ms-request-id": "b6d97c71-c21c-4a7f-8fdb-cda13ed68735", - "x-ms-routing-request-id": "WESTUS2:20210519T185429Z:b6d97c71-c21c-4a7f-8fdb-cda13ed68735" + "x-ms-correlation-request-id": "4750f119-655c-4e9a-b71c-827a79dddb87", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "4750f119-655c-4e9a-b71c-827a79dddb87", + "x-ms-routing-request-id": "WESTUS2:20210616T001849Z:4750f119-655c-4e9a-b71c-827a79dddb87" }, "ResponseBody": [] }, @@ -8189,7 +8332,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bc2bfc84f0727e39fb7e72856a9eca9", "x-ms-return-client-request-id": "true" }, @@ -8198,17 +8341,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:29 GMT", + "Date": "Wed, 16 Jun 2021 00:18:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54", - "x-ms-ratelimit-remaining-subscription-reads": "11636", - "x-ms-request-id": "2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54", - "x-ms-routing-request-id": "WESTUS2:20210519T185430Z:2b86dcdd-a7c9-43e0-93cf-7d3562ba1e54" + "x-ms-correlation-request-id": "b7ea884a-d3de-4c77-8872-8597662fa9be", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "b7ea884a-d3de-4c77-8872-8597662fa9be", + "x-ms-routing-request-id": "WESTUS2:20210616T001850Z:b7ea884a-d3de-4c77-8872-8597662fa9be" }, "ResponseBody": [] }, @@ -8217,7 +8360,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "629cb9e551b3dfa2c5eedde77605f189", "x-ms-return-client-request-id": "true" }, @@ -8226,17 +8369,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:30 GMT", + "Date": "Wed, 16 Jun 2021 00:18:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f4d474dd-4ea3-4251-9ac0-a2db7c550099", - "x-ms-ratelimit-remaining-subscription-reads": "11634", - "x-ms-request-id": "f4d474dd-4ea3-4251-9ac0-a2db7c550099", - "x-ms-routing-request-id": "WESTUS2:20210519T185431Z:f4d474dd-4ea3-4251-9ac0-a2db7c550099" + "x-ms-correlation-request-id": "08bd69e3-bdbb-4c89-991b-0915ba0c2146", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "08bd69e3-bdbb-4c89-991b-0915ba0c2146", + "x-ms-routing-request-id": "WESTUS2:20210616T001851Z:08bd69e3-bdbb-4c89-991b-0915ba0c2146" }, "ResponseBody": [] }, @@ -8245,7 +8388,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f35a9adbe8a59b7a5e00d480277704f2", "x-ms-return-client-request-id": "true" }, @@ -8254,17 +8397,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:31 GMT", + "Date": "Wed, 16 Jun 2021 00:18:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "98050427-12cd-43b8-bbb7-e7fb990b64fe", - "x-ms-ratelimit-remaining-subscription-reads": "11632", - "x-ms-request-id": "98050427-12cd-43b8-bbb7-e7fb990b64fe", - "x-ms-routing-request-id": "WESTUS2:20210519T185432Z:98050427-12cd-43b8-bbb7-e7fb990b64fe" + "x-ms-correlation-request-id": "a5e521c7-c319-4ef6-a30f-7fc6448c1a4d", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "a5e521c7-c319-4ef6-a30f-7fc6448c1a4d", + "x-ms-routing-request-id": "WESTUS2:20210616T001852Z:a5e521c7-c319-4ef6-a30f-7fc6448c1a4d" }, "ResponseBody": [] }, @@ -8273,7 +8416,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d707f59fd3ce778d1ce2761972fbb199", "x-ms-return-client-request-id": "true" }, @@ -8282,17 +8425,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:32 GMT", + "Date": "Wed, 16 Jun 2021 00:18:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e30c3486-dc90-415b-90d5-869a2950af30", - "x-ms-ratelimit-remaining-subscription-reads": "11630", - "x-ms-request-id": "e30c3486-dc90-415b-90d5-869a2950af30", - "x-ms-routing-request-id": "WESTUS2:20210519T185433Z:e30c3486-dc90-415b-90d5-869a2950af30" + "x-ms-correlation-request-id": "49527455-285d-4512-8866-7b307e7c9117", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "49527455-285d-4512-8866-7b307e7c9117", + "x-ms-routing-request-id": "WESTUS2:20210616T001853Z:49527455-285d-4512-8866-7b307e7c9117" }, "ResponseBody": [] }, @@ -8301,7 +8444,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb4c5ec6f94ffd043f0104b27c21b74d", "x-ms-return-client-request-id": "true" }, @@ -8310,17 +8453,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:33 GMT", + "Date": "Wed, 16 Jun 2021 00:18:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d1f0f091-04d4-4483-9fd3-38109f0436b4", - "x-ms-ratelimit-remaining-subscription-reads": "11628", - "x-ms-request-id": "d1f0f091-04d4-4483-9fd3-38109f0436b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185434Z:d1f0f091-04d4-4483-9fd3-38109f0436b4" + "x-ms-correlation-request-id": "41fad3a0-d09d-454d-849a-040da005998c", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "41fad3a0-d09d-454d-849a-040da005998c", + "x-ms-routing-request-id": "WESTUS2:20210616T001854Z:41fad3a0-d09d-454d-849a-040da005998c" }, "ResponseBody": [] }, @@ -8329,7 +8472,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8148ebea19fe08bb0de3d7c271602862", "x-ms-return-client-request-id": "true" }, @@ -8338,17 +8481,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:34 GMT", + "Date": "Wed, 16 Jun 2021 00:18:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1007ec4-82ff-4b32-9429-66c1dd910289", - "x-ms-ratelimit-remaining-subscription-reads": "11626", - "x-ms-request-id": "c1007ec4-82ff-4b32-9429-66c1dd910289", - "x-ms-routing-request-id": "WESTUS2:20210519T185435Z:c1007ec4-82ff-4b32-9429-66c1dd910289" + "x-ms-correlation-request-id": "c87e0827-ef0c-4be2-8495-153a78981775", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "c87e0827-ef0c-4be2-8495-153a78981775", + "x-ms-routing-request-id": "WESTUS2:20210616T001855Z:c87e0827-ef0c-4be2-8495-153a78981775" }, "ResponseBody": [] }, @@ -8357,7 +8500,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9ba3b4e482ba6a3f00998cdcfdafafa", "x-ms-return-client-request-id": "true" }, @@ -8366,17 +8509,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:35 GMT", + "Date": "Wed, 16 Jun 2021 00:18:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "257f0c78-791e-4fc1-b054-8d2c46988925", - "x-ms-ratelimit-remaining-subscription-reads": "11624", - "x-ms-request-id": "257f0c78-791e-4fc1-b054-8d2c46988925", - "x-ms-routing-request-id": "WESTUS2:20210519T185436Z:257f0c78-791e-4fc1-b054-8d2c46988925" + "x-ms-correlation-request-id": "f9fd530d-645d-4aae-8b4b-27c594fc55a9", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "f9fd530d-645d-4aae-8b4b-27c594fc55a9", + "x-ms-routing-request-id": "WESTUS2:20210616T001856Z:f9fd530d-645d-4aae-8b4b-27c594fc55a9" }, "ResponseBody": [] }, @@ -8385,7 +8528,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "872f282a2fb2ac9ba343ae6b22418bdf", "x-ms-return-client-request-id": "true" }, @@ -8394,17 +8537,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:36 GMT", + "Date": "Wed, 16 Jun 2021 00:18:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6a4952fe-d676-464d-a9c3-f0f0aad805e3", - "x-ms-ratelimit-remaining-subscription-reads": "11622", - "x-ms-request-id": "6a4952fe-d676-464d-a9c3-f0f0aad805e3", - "x-ms-routing-request-id": "WESTUS2:20210519T185437Z:6a4952fe-d676-464d-a9c3-f0f0aad805e3" + "x-ms-correlation-request-id": "e2ff054d-a550-473c-8641-0b75df05c21d", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "e2ff054d-a550-473c-8641-0b75df05c21d", + "x-ms-routing-request-id": "WESTUS2:20210616T001857Z:e2ff054d-a550-473c-8641-0b75df05c21d" }, "ResponseBody": [] }, @@ -8413,7 +8556,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4163a1d8ee67a12247a290f480ed3933", "x-ms-return-client-request-id": "true" }, @@ -8422,17 +8565,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:37 GMT", + "Date": "Wed, 16 Jun 2021 00:18:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "14d49709-ecc7-44bd-b78f-b8b66f73b5f9", - "x-ms-ratelimit-remaining-subscription-reads": "11620", - "x-ms-request-id": "14d49709-ecc7-44bd-b78f-b8b66f73b5f9", - "x-ms-routing-request-id": "WESTUS2:20210519T185438Z:14d49709-ecc7-44bd-b78f-b8b66f73b5f9" + "x-ms-correlation-request-id": "84e370dd-2a8e-4a13-81ff-3078040436f2", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "84e370dd-2a8e-4a13-81ff-3078040436f2", + "x-ms-routing-request-id": "WESTUS2:20210616T001858Z:84e370dd-2a8e-4a13-81ff-3078040436f2" }, "ResponseBody": [] }, @@ -8441,7 +8584,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4897dce9a1301fafa00d26e7993784ae", "x-ms-return-client-request-id": "true" }, @@ -8450,17 +8593,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:38 GMT", + "Date": "Wed, 16 Jun 2021 00:18:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2415b51a-b0b6-4949-bf55-dbec6a9e27ce", - "x-ms-ratelimit-remaining-subscription-reads": "11618", - "x-ms-request-id": "2415b51a-b0b6-4949-bf55-dbec6a9e27ce", - "x-ms-routing-request-id": "WESTUS2:20210519T185439Z:2415b51a-b0b6-4949-bf55-dbec6a9e27ce" + "x-ms-correlation-request-id": "ab81cdc4-4485-4953-a722-83d77e62925c", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "ab81cdc4-4485-4953-a722-83d77e62925c", + "x-ms-routing-request-id": "WESTUS2:20210616T001859Z:ab81cdc4-4485-4953-a722-83d77e62925c" }, "ResponseBody": [] }, @@ -8469,7 +8612,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2df5b97eb9763c93068d3f109fa62bb5", "x-ms-return-client-request-id": "true" }, @@ -8478,17 +8621,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:39 GMT", + "Date": "Wed, 16 Jun 2021 00:19:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "264d1f5d-3889-4791-a9d6-11ec47fe209b", - "x-ms-ratelimit-remaining-subscription-reads": "11616", - "x-ms-request-id": "264d1f5d-3889-4791-a9d6-11ec47fe209b", - "x-ms-routing-request-id": "WESTUS2:20210519T185440Z:264d1f5d-3889-4791-a9d6-11ec47fe209b" + "x-ms-correlation-request-id": "83f7ef01-faad-412a-b0b9-83656430aed9", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "83f7ef01-faad-412a-b0b9-83656430aed9", + "x-ms-routing-request-id": "WESTUS2:20210616T001900Z:83f7ef01-faad-412a-b0b9-83656430aed9" }, "ResponseBody": [] }, @@ -8497,7 +8640,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "45827b0a42a936aef144a059c73a0810", "x-ms-return-client-request-id": "true" }, @@ -8506,17 +8649,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:40 GMT", + "Date": "Wed, 16 Jun 2021 00:19:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d2c015db-38da-4e8e-9f26-63a471fbf26d", - "x-ms-ratelimit-remaining-subscription-reads": "11614", - "x-ms-request-id": "d2c015db-38da-4e8e-9f26-63a471fbf26d", - "x-ms-routing-request-id": "WESTUS2:20210519T185441Z:d2c015db-38da-4e8e-9f26-63a471fbf26d" + "x-ms-correlation-request-id": "78b84d46-7ffe-4ea4-a411-45f258d7a470", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "78b84d46-7ffe-4ea4-a411-45f258d7a470", + "x-ms-routing-request-id": "WESTUS2:20210616T001901Z:78b84d46-7ffe-4ea4-a411-45f258d7a470" }, "ResponseBody": [] }, @@ -8525,7 +8668,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c776e11e0cf82fbc485b42a3629e80f9", "x-ms-return-client-request-id": "true" }, @@ -8534,17 +8677,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:41 GMT", + "Date": "Wed, 16 Jun 2021 00:19:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bfdc7b0a-7417-44a1-9008-40f21ee26814", - "x-ms-ratelimit-remaining-subscription-reads": "11612", - "x-ms-request-id": "bfdc7b0a-7417-44a1-9008-40f21ee26814", - "x-ms-routing-request-id": "WESTUS2:20210519T185442Z:bfdc7b0a-7417-44a1-9008-40f21ee26814" + "x-ms-correlation-request-id": "bc82db2f-4fb7-4a9f-9a2d-470038084f31", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "bc82db2f-4fb7-4a9f-9a2d-470038084f31", + "x-ms-routing-request-id": "WESTUS2:20210616T001902Z:bc82db2f-4fb7-4a9f-9a2d-470038084f31" }, "ResponseBody": [] }, @@ -8553,7 +8696,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1edd70e13eb43b050abe3b31183a74cb", "x-ms-return-client-request-id": "true" }, @@ -8562,17 +8705,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:42 GMT", + "Date": "Wed, 16 Jun 2021 00:19:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8b8538c1-c9e1-41a8-8413-4709723af5ca", - "x-ms-ratelimit-remaining-subscription-reads": "11610", - "x-ms-request-id": "8b8538c1-c9e1-41a8-8413-4709723af5ca", - "x-ms-routing-request-id": "WESTUS2:20210519T185443Z:8b8538c1-c9e1-41a8-8413-4709723af5ca" + "x-ms-correlation-request-id": "6ff12d0a-b11c-4000-8665-ca41c71aad87", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "6ff12d0a-b11c-4000-8665-ca41c71aad87", + "x-ms-routing-request-id": "WESTUS2:20210616T001903Z:6ff12d0a-b11c-4000-8665-ca41c71aad87" }, "ResponseBody": [] }, @@ -8581,7 +8724,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdf22e856430fdbdbe52fd4e000bd452", "x-ms-return-client-request-id": "true" }, @@ -8590,17 +8733,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:43 GMT", + "Date": "Wed, 16 Jun 2021 00:19:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0f12d932-738f-4962-b4c9-a8b9fef94f39", - "x-ms-ratelimit-remaining-subscription-reads": "11608", - "x-ms-request-id": "0f12d932-738f-4962-b4c9-a8b9fef94f39", - "x-ms-routing-request-id": "WESTUS2:20210519T185444Z:0f12d932-738f-4962-b4c9-a8b9fef94f39" + "x-ms-correlation-request-id": "ead91f29-54a2-47b8-a073-98be2c9636f4", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "ead91f29-54a2-47b8-a073-98be2c9636f4", + "x-ms-routing-request-id": "WESTUS2:20210616T001904Z:ead91f29-54a2-47b8-a073-98be2c9636f4" }, "ResponseBody": [] }, @@ -8609,7 +8752,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5777a6c4e95ddf5bdc3bbc3ad08b170e", "x-ms-return-client-request-id": "true" }, @@ -8618,17 +8761,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:44 GMT", + "Date": "Wed, 16 Jun 2021 00:19:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8cf514ed-35e8-4874-bc13-39c51ccbbfc3", - "x-ms-ratelimit-remaining-subscription-reads": "11606", - "x-ms-request-id": "8cf514ed-35e8-4874-bc13-39c51ccbbfc3", - "x-ms-routing-request-id": "WESTUS2:20210519T185445Z:8cf514ed-35e8-4874-bc13-39c51ccbbfc3" + "x-ms-correlation-request-id": "3192523a-7d01-4fe0-8c1c-88b812a998b3", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "3192523a-7d01-4fe0-8c1c-88b812a998b3", + "x-ms-routing-request-id": "WESTUS2:20210616T001905Z:3192523a-7d01-4fe0-8c1c-88b812a998b3" }, "ResponseBody": [] }, @@ -8637,7 +8780,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "331d76e6c2ac7dc9b3df606140b63aff", "x-ms-return-client-request-id": "true" }, @@ -8646,17 +8789,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:46 GMT", + "Date": "Wed, 16 Jun 2021 00:19:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3c46cf6e-d227-465f-b6ee-f080174290f7", - "x-ms-ratelimit-remaining-subscription-reads": "11604", - "x-ms-request-id": "3c46cf6e-d227-465f-b6ee-f080174290f7", - "x-ms-routing-request-id": "WESTUS2:20210519T185446Z:3c46cf6e-d227-465f-b6ee-f080174290f7" + "x-ms-correlation-request-id": "275be8ca-eb99-463d-a4ff-ebcbae81e7cd", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "275be8ca-eb99-463d-a4ff-ebcbae81e7cd", + "x-ms-routing-request-id": "WESTUS2:20210616T001906Z:275be8ca-eb99-463d-a4ff-ebcbae81e7cd" }, "ResponseBody": [] }, @@ -8665,7 +8808,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "716de8e91dc29c6ed213e0f5a7832d33", "x-ms-return-client-request-id": "true" }, @@ -8674,17 +8817,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:47 GMT", + "Date": "Wed, 16 Jun 2021 00:19:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c61da5f8-fec7-4427-9a13-999b4f95e751", - "x-ms-ratelimit-remaining-subscription-reads": "11602", - "x-ms-request-id": "c61da5f8-fec7-4427-9a13-999b4f95e751", - "x-ms-routing-request-id": "WESTUS2:20210519T185447Z:c61da5f8-fec7-4427-9a13-999b4f95e751" + "x-ms-correlation-request-id": "cdde79d0-c576-401c-96eb-34e01b25f461", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "cdde79d0-c576-401c-96eb-34e01b25f461", + "x-ms-routing-request-id": "WESTUS2:20210616T001908Z:cdde79d0-c576-401c-96eb-34e01b25f461" }, "ResponseBody": [] }, @@ -8693,7 +8836,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a68ef3ba0ed01a6ddfaa37d89fa9e26", "x-ms-return-client-request-id": "true" }, @@ -8702,17 +8845,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:48 GMT", + "Date": "Wed, 16 Jun 2021 00:19:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bd2cf7c0-4208-4b04-86e2-ad536807f34f", - "x-ms-ratelimit-remaining-subscription-reads": "11600", - "x-ms-request-id": "bd2cf7c0-4208-4b04-86e2-ad536807f34f", - "x-ms-routing-request-id": "WESTUS2:20210519T185448Z:bd2cf7c0-4208-4b04-86e2-ad536807f34f" + "x-ms-correlation-request-id": "2c3f93ba-7c47-4bcc-8b65-ee3e8ad369fe", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "2c3f93ba-7c47-4bcc-8b65-ee3e8ad369fe", + "x-ms-routing-request-id": "WESTUS2:20210616T001909Z:2c3f93ba-7c47-4bcc-8b65-ee3e8ad369fe" }, "ResponseBody": [] }, @@ -8721,7 +8864,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e750bd00a51dc84b07816099e1d4d530", "x-ms-return-client-request-id": "true" }, @@ -8730,17 +8873,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:49 GMT", + "Date": "Wed, 16 Jun 2021 00:19:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "223b26f8-508e-4410-9232-ea9d05101198", - "x-ms-ratelimit-remaining-subscription-reads": "11598", - "x-ms-request-id": "223b26f8-508e-4410-9232-ea9d05101198", - "x-ms-routing-request-id": "WESTUS2:20210519T185449Z:223b26f8-508e-4410-9232-ea9d05101198" + "x-ms-correlation-request-id": "aa6b7890-3743-4f1b-b937-763d61f4d060", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "aa6b7890-3743-4f1b-b937-763d61f4d060", + "x-ms-routing-request-id": "WESTUS2:20210616T001910Z:aa6b7890-3743-4f1b-b937-763d61f4d060" }, "ResponseBody": [] }, @@ -8749,7 +8892,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51252cb2b04d4811426b94c87af013d8", "x-ms-return-client-request-id": "true" }, @@ -8758,17 +8901,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:50 GMT", + "Date": "Wed, 16 Jun 2021 00:19:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c53ebea4-8ed4-463b-a27d-fbdff3824bc8", - "x-ms-ratelimit-remaining-subscription-reads": "11596", - "x-ms-request-id": "c53ebea4-8ed4-463b-a27d-fbdff3824bc8", - "x-ms-routing-request-id": "WESTUS2:20210519T185450Z:c53ebea4-8ed4-463b-a27d-fbdff3824bc8" + "x-ms-correlation-request-id": "df647147-67a7-482c-b32c-98bb663ebecc", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "df647147-67a7-482c-b32c-98bb663ebecc", + "x-ms-routing-request-id": "WESTUS2:20210616T001911Z:df647147-67a7-482c-b32c-98bb663ebecc" }, "ResponseBody": [] }, @@ -8777,7 +8920,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eaf4ba7445329615a3a0826c400d1f08", "x-ms-return-client-request-id": "true" }, @@ -8786,17 +8929,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:51 GMT", + "Date": "Wed, 16 Jun 2021 00:19:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dc81ccd5-dada-48b2-9485-a0a7e3eee829", - "x-ms-ratelimit-remaining-subscription-reads": "11594", - "x-ms-request-id": "dc81ccd5-dada-48b2-9485-a0a7e3eee829", - "x-ms-routing-request-id": "WESTUS2:20210519T185451Z:dc81ccd5-dada-48b2-9485-a0a7e3eee829" + "x-ms-correlation-request-id": "f95ee466-4cf2-43eb-b598-f14af70bdfda", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "f95ee466-4cf2-43eb-b598-f14af70bdfda", + "x-ms-routing-request-id": "WESTUS2:20210616T001912Z:f95ee466-4cf2-43eb-b598-f14af70bdfda" }, "ResponseBody": [] }, @@ -8805,7 +8948,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ccb73244dd450d8ab07a5b210834d16", "x-ms-return-client-request-id": "true" }, @@ -8814,17 +8957,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:52 GMT", + "Date": "Wed, 16 Jun 2021 00:19:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "197ec2a5-5c74-4685-86ab-b85388716e9f", - "x-ms-ratelimit-remaining-subscription-reads": "11592", - "x-ms-request-id": "197ec2a5-5c74-4685-86ab-b85388716e9f", - "x-ms-routing-request-id": "WESTUS2:20210519T185452Z:197ec2a5-5c74-4685-86ab-b85388716e9f" + "x-ms-correlation-request-id": "9d42038b-3222-46ed-a3f3-d1a9ff9c9f45", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "9d42038b-3222-46ed-a3f3-d1a9ff9c9f45", + "x-ms-routing-request-id": "WESTUS2:20210616T001913Z:9d42038b-3222-46ed-a3f3-d1a9ff9c9f45" }, "ResponseBody": [] }, @@ -8833,7 +8976,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2725886eebdf6dfd178faead2da50834", "x-ms-return-client-request-id": "true" }, @@ -8842,17 +8985,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:53 GMT", + "Date": "Wed, 16 Jun 2021 00:19:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "99f47ba9-fde8-4eb5-8703-25ae26f98953", - "x-ms-ratelimit-remaining-subscription-reads": "11590", - "x-ms-request-id": "99f47ba9-fde8-4eb5-8703-25ae26f98953", - "x-ms-routing-request-id": "WESTUS2:20210519T185453Z:99f47ba9-fde8-4eb5-8703-25ae26f98953" + "x-ms-correlation-request-id": "19c6db21-146d-44bc-a11b-d05bcc9a6b20", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "19c6db21-146d-44bc-a11b-d05bcc9a6b20", + "x-ms-routing-request-id": "WESTUS2:20210616T001914Z:19c6db21-146d-44bc-a11b-d05bcc9a6b20" }, "ResponseBody": [] }, @@ -8861,7 +9004,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "06a38b4bb6252704e1a43f2b9f628620", "x-ms-return-client-request-id": "true" }, @@ -8870,17 +9013,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:54 GMT", + "Date": "Wed, 16 Jun 2021 00:19:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8afedecd-1f26-4bd6-832e-140d4bf6bd4d", - "x-ms-ratelimit-remaining-subscription-reads": "11588", - "x-ms-request-id": "8afedecd-1f26-4bd6-832e-140d4bf6bd4d", - "x-ms-routing-request-id": "WESTUS2:20210519T185454Z:8afedecd-1f26-4bd6-832e-140d4bf6bd4d" + "x-ms-correlation-request-id": "d0e79135-4b77-4e37-8fdf-97629896609d", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "d0e79135-4b77-4e37-8fdf-97629896609d", + "x-ms-routing-request-id": "WESTUS2:20210616T001915Z:d0e79135-4b77-4e37-8fdf-97629896609d" }, "ResponseBody": [] }, @@ -8889,7 +9032,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8fe6c52f8e83929765e44459e2b2305", "x-ms-return-client-request-id": "true" }, @@ -8898,17 +9041,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:55 GMT", + "Date": "Wed, 16 Jun 2021 00:19:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fa5aadfe-9c60-4f43-9a72-f605dda8087c", - "x-ms-ratelimit-remaining-subscription-reads": "11586", - "x-ms-request-id": "fa5aadfe-9c60-4f43-9a72-f605dda8087c", - "x-ms-routing-request-id": "WESTUS2:20210519T185455Z:fa5aadfe-9c60-4f43-9a72-f605dda8087c" + "x-ms-correlation-request-id": "979912d5-4826-4a42-b7c7-59244fc57d0b", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "979912d5-4826-4a42-b7c7-59244fc57d0b", + "x-ms-routing-request-id": "WESTUS2:20210616T001916Z:979912d5-4826-4a42-b7c7-59244fc57d0b" }, "ResponseBody": [] }, @@ -8917,7 +9060,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "846770fe46dfb7f183fd463aabd1cdb4", "x-ms-return-client-request-id": "true" }, @@ -8926,17 +9069,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:56 GMT", + "Date": "Wed, 16 Jun 2021 00:19:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4c64ff55-3fa8-437d-8a81-2c01283e4b84", - "x-ms-ratelimit-remaining-subscription-reads": "11584", - "x-ms-request-id": "4c64ff55-3fa8-437d-8a81-2c01283e4b84", - "x-ms-routing-request-id": "WESTUS2:20210519T185456Z:4c64ff55-3fa8-437d-8a81-2c01283e4b84" + "x-ms-correlation-request-id": "01e145bc-283f-462f-abd1-d811975016b1", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "01e145bc-283f-462f-abd1-d811975016b1", + "x-ms-routing-request-id": "WESTUS2:20210616T001917Z:01e145bc-283f-462f-abd1-d811975016b1" }, "ResponseBody": [] }, @@ -8945,7 +9088,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c05a8e0850a7524c626a90c771bf88b5", "x-ms-return-client-request-id": "true" }, @@ -8954,17 +9097,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:57 GMT", + "Date": "Wed, 16 Jun 2021 00:19:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d604fa42-5f85-491e-886c-503d9935d313", - "x-ms-ratelimit-remaining-subscription-reads": "11582", - "x-ms-request-id": "d604fa42-5f85-491e-886c-503d9935d313", - "x-ms-routing-request-id": "WESTUS2:20210519T185457Z:d604fa42-5f85-491e-886c-503d9935d313" + "x-ms-correlation-request-id": "4a57994c-c41f-477a-b472-99aca4fb1d21", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "4a57994c-c41f-477a-b472-99aca4fb1d21", + "x-ms-routing-request-id": "WESTUS2:20210616T001918Z:4a57994c-c41f-477a-b472-99aca4fb1d21" }, "ResponseBody": [] }, @@ -8973,7 +9116,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e2c3a8102fb0b407a4634eab2ee8da4", "x-ms-return-client-request-id": "true" }, @@ -8982,17 +9125,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:58 GMT", + "Date": "Wed, 16 Jun 2021 00:19:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a2cb02ae-5956-40e4-924d-f0758fbe7e3f", - "x-ms-ratelimit-remaining-subscription-reads": "11580", - "x-ms-request-id": "a2cb02ae-5956-40e4-924d-f0758fbe7e3f", - "x-ms-routing-request-id": "WESTUS2:20210519T185458Z:a2cb02ae-5956-40e4-924d-f0758fbe7e3f" + "x-ms-correlation-request-id": "a40db2f6-8f4a-47cc-8eea-66e9b4149cbc", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "a40db2f6-8f4a-47cc-8eea-66e9b4149cbc", + "x-ms-routing-request-id": "WESTUS2:20210616T001919Z:a40db2f6-8f4a-47cc-8eea-66e9b4149cbc" }, "ResponseBody": [] }, @@ -9001,7 +9144,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "103c909062d1ae5d24142274b62a45c4", "x-ms-return-client-request-id": "true" }, @@ -9010,17 +9153,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:59 GMT", + "Date": "Wed, 16 Jun 2021 00:19:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7bd92ae4-fd5f-481a-a06f-5f91d5222e72", - "x-ms-ratelimit-remaining-subscription-reads": "11578", - "x-ms-request-id": "7bd92ae4-fd5f-481a-a06f-5f91d5222e72", - "x-ms-routing-request-id": "WESTUS2:20210519T185500Z:7bd92ae4-fd5f-481a-a06f-5f91d5222e72" + "x-ms-correlation-request-id": "017f7624-e8bc-43d4-8d44-f00900074832", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "017f7624-e8bc-43d4-8d44-f00900074832", + "x-ms-routing-request-id": "WESTUS2:20210616T001920Z:017f7624-e8bc-43d4-8d44-f00900074832" }, "ResponseBody": [] }, @@ -9029,7 +9172,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71b990759fa406b94d4e46611b62a073", "x-ms-return-client-request-id": "true" }, @@ -9038,17 +9181,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:00 GMT", + "Date": "Wed, 16 Jun 2021 00:19:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "66a8dec1-f407-4cb6-b7e9-ed4721472aaa", - "x-ms-ratelimit-remaining-subscription-reads": "11576", - "x-ms-request-id": "66a8dec1-f407-4cb6-b7e9-ed4721472aaa", - "x-ms-routing-request-id": "WESTUS2:20210519T185501Z:66a8dec1-f407-4cb6-b7e9-ed4721472aaa" + "x-ms-correlation-request-id": "a1f2252d-1e21-4709-8989-fdafc992d947", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "a1f2252d-1e21-4709-8989-fdafc992d947", + "x-ms-routing-request-id": "WESTUS2:20210616T001921Z:a1f2252d-1e21-4709-8989-fdafc992d947" }, "ResponseBody": [] }, @@ -9057,7 +9200,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e136ecdd77821ee4dc7e0ae6e0cb5550", "x-ms-return-client-request-id": "true" }, @@ -9066,17 +9209,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:01 GMT", + "Date": "Wed, 16 Jun 2021 00:19:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "817e46ea-44ef-48d5-80f5-3bff7d4fef9f", - "x-ms-ratelimit-remaining-subscription-reads": "11574", - "x-ms-request-id": "817e46ea-44ef-48d5-80f5-3bff7d4fef9f", - "x-ms-routing-request-id": "WESTUS2:20210519T185502Z:817e46ea-44ef-48d5-80f5-3bff7d4fef9f" + "x-ms-correlation-request-id": "bff6038a-ddf3-4f44-809e-75d089d48cea", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "bff6038a-ddf3-4f44-809e-75d089d48cea", + "x-ms-routing-request-id": "WESTUS2:20210616T001922Z:bff6038a-ddf3-4f44-809e-75d089d48cea" }, "ResponseBody": [] }, @@ -9085,7 +9228,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "217470001b35f1ffd636c3821bfc92c1", "x-ms-return-client-request-id": "true" }, @@ -9094,17 +9237,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:02 GMT", + "Date": "Wed, 16 Jun 2021 00:19:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6207fad8-d823-4a87-90d7-628b6212261b", - "x-ms-ratelimit-remaining-subscription-reads": "11572", - "x-ms-request-id": "6207fad8-d823-4a87-90d7-628b6212261b", - "x-ms-routing-request-id": "WESTUS2:20210519T185503Z:6207fad8-d823-4a87-90d7-628b6212261b" + "x-ms-correlation-request-id": "38330013-ab73-49c8-ac94-0c8b82ea6783", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "38330013-ab73-49c8-ac94-0c8b82ea6783", + "x-ms-routing-request-id": "WESTUS2:20210616T001923Z:38330013-ab73-49c8-ac94-0c8b82ea6783" }, "ResponseBody": [] }, @@ -9113,7 +9256,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c997ae7464f3fe41ac9a952694d32682", "x-ms-return-client-request-id": "true" }, @@ -9122,17 +9265,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:03 GMT", + "Date": "Wed, 16 Jun 2021 00:19:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "23a5e917-ee73-488a-9b9a-3922b660a799", - "x-ms-ratelimit-remaining-subscription-reads": "11570", - "x-ms-request-id": "23a5e917-ee73-488a-9b9a-3922b660a799", - "x-ms-routing-request-id": "WESTUS2:20210519T185504Z:23a5e917-ee73-488a-9b9a-3922b660a799" + "x-ms-correlation-request-id": "eec355f9-dd96-40af-9309-b3ba2235e14f", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "eec355f9-dd96-40af-9309-b3ba2235e14f", + "x-ms-routing-request-id": "WESTUS2:20210616T001924Z:eec355f9-dd96-40af-9309-b3ba2235e14f" }, "ResponseBody": [] }, @@ -9141,7 +9284,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ab60f5f97eedc13eec450a4cb46102df", "x-ms-return-client-request-id": "true" }, @@ -9150,17 +9293,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:04 GMT", + "Date": "Wed, 16 Jun 2021 00:19:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0f7d212e-404b-466d-bd84-cddf49a20347", - "x-ms-ratelimit-remaining-subscription-reads": "11568", - "x-ms-request-id": "0f7d212e-404b-466d-bd84-cddf49a20347", - "x-ms-routing-request-id": "WESTUS2:20210519T185505Z:0f7d212e-404b-466d-bd84-cddf49a20347" + "x-ms-correlation-request-id": "db641fbc-79ba-4b06-8c95-4f4862ccac4b", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "db641fbc-79ba-4b06-8c95-4f4862ccac4b", + "x-ms-routing-request-id": "WESTUS2:20210616T001925Z:db641fbc-79ba-4b06-8c95-4f4862ccac4b" }, "ResponseBody": [] }, @@ -9169,7 +9312,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "317248eb8b349c5c2e76759a86d95d03", "x-ms-return-client-request-id": "true" }, @@ -9178,17 +9321,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:05 GMT", + "Date": "Wed, 16 Jun 2021 00:19:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e09022f0-6387-4ef3-9276-6f79707b1181", - "x-ms-ratelimit-remaining-subscription-reads": "11566", - "x-ms-request-id": "e09022f0-6387-4ef3-9276-6f79707b1181", - "x-ms-routing-request-id": "WESTUS2:20210519T185506Z:e09022f0-6387-4ef3-9276-6f79707b1181" + "x-ms-correlation-request-id": "f4578e70-51c6-4299-828f-6d2bfc1cdf66", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "f4578e70-51c6-4299-828f-6d2bfc1cdf66", + "x-ms-routing-request-id": "WESTUS2:20210616T001926Z:f4578e70-51c6-4299-828f-6d2bfc1cdf66" }, "ResponseBody": [] }, @@ -9197,7 +9340,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2688400fe69cf5d470d5ddae59f4494a", "x-ms-return-client-request-id": "true" }, @@ -9206,17 +9349,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:06 GMT", + "Date": "Wed, 16 Jun 2021 00:19:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0d58b753-4f24-4b36-840b-2463bf010b41", - "x-ms-ratelimit-remaining-subscription-reads": "11564", - "x-ms-request-id": "0d58b753-4f24-4b36-840b-2463bf010b41", - "x-ms-routing-request-id": "WESTUS2:20210519T185507Z:0d58b753-4f24-4b36-840b-2463bf010b41" + "x-ms-correlation-request-id": "53b9d2aa-e009-451e-b213-747034f67e6f", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "53b9d2aa-e009-451e-b213-747034f67e6f", + "x-ms-routing-request-id": "WESTUS2:20210616T001927Z:53b9d2aa-e009-451e-b213-747034f67e6f" }, "ResponseBody": [] }, @@ -9225,7 +9368,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b3ab598f4606e4d98c47d7709a33a13", "x-ms-return-client-request-id": "true" }, @@ -9234,17 +9377,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:07 GMT", + "Date": "Wed, 16 Jun 2021 00:19:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ba886917-ff1d-4994-9360-b6fd45ffc110", - "x-ms-ratelimit-remaining-subscription-reads": "11562", - "x-ms-request-id": "ba886917-ff1d-4994-9360-b6fd45ffc110", - "x-ms-routing-request-id": "WESTUS2:20210519T185508Z:ba886917-ff1d-4994-9360-b6fd45ffc110" + "x-ms-correlation-request-id": "ce67b2dd-c36c-441a-b05f-c0597be914d9", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "ce67b2dd-c36c-441a-b05f-c0597be914d9", + "x-ms-routing-request-id": "WESTUS2:20210616T001928Z:ce67b2dd-c36c-441a-b05f-c0597be914d9" }, "ResponseBody": [] }, @@ -9253,7 +9396,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "733c07e8dcd90543747dc05eaeae4239", "x-ms-return-client-request-id": "true" }, @@ -9262,17 +9405,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:08 GMT", + "Date": "Wed, 16 Jun 2021 00:19:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e95354a4-6aea-4f94-8d5f-913a207b1a72", - "x-ms-ratelimit-remaining-subscription-reads": "11560", - "x-ms-request-id": "e95354a4-6aea-4f94-8d5f-913a207b1a72", - "x-ms-routing-request-id": "WESTUS2:20210519T185509Z:e95354a4-6aea-4f94-8d5f-913a207b1a72" + "x-ms-correlation-request-id": "925d2e61-4c80-45bc-a6fa-1a66b3b5b370", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "925d2e61-4c80-45bc-a6fa-1a66b3b5b370", + "x-ms-routing-request-id": "WESTUS2:20210616T001929Z:925d2e61-4c80-45bc-a6fa-1a66b3b5b370" }, "ResponseBody": [] }, @@ -9281,7 +9424,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1022b2c119e1aa2f31a8dd7695debcc", "x-ms-return-client-request-id": "true" }, @@ -9290,17 +9433,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:09 GMT", + "Date": "Wed, 16 Jun 2021 00:19:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ddead2ae-16a0-41ff-a28d-f48f02b4a713", - "x-ms-ratelimit-remaining-subscription-reads": "11558", - "x-ms-request-id": "ddead2ae-16a0-41ff-a28d-f48f02b4a713", - "x-ms-routing-request-id": "WESTUS2:20210519T185510Z:ddead2ae-16a0-41ff-a28d-f48f02b4a713" + "x-ms-correlation-request-id": "df733848-a8c4-4624-9885-6e58ed3568b3", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "df733848-a8c4-4624-9885-6e58ed3568b3", + "x-ms-routing-request-id": "WESTUS2:20210616T001930Z:df733848-a8c4-4624-9885-6e58ed3568b3" }, "ResponseBody": [] }, @@ -9309,7 +9452,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52c5ca9ad6b8bb717135d7e333efc0ea", "x-ms-return-client-request-id": "true" }, @@ -9318,17 +9461,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:10 GMT", + "Date": "Wed, 16 Jun 2021 00:19:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4be6ad6f-2296-4a66-a7a9-86ea3f7be975", - "x-ms-ratelimit-remaining-subscription-reads": "11556", - "x-ms-request-id": "4be6ad6f-2296-4a66-a7a9-86ea3f7be975", - "x-ms-routing-request-id": "WESTUS2:20210519T185511Z:4be6ad6f-2296-4a66-a7a9-86ea3f7be975" + "x-ms-correlation-request-id": "62b8eccb-c896-489f-8c2f-3fad872e3fa1", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "62b8eccb-c896-489f-8c2f-3fad872e3fa1", + "x-ms-routing-request-id": "WESTUS2:20210616T001931Z:62b8eccb-c896-489f-8c2f-3fad872e3fa1" }, "ResponseBody": [] }, @@ -9337,7 +9480,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de4a438169a1d674642180be4f6c9b17", "x-ms-return-client-request-id": "true" }, @@ -9346,17 +9489,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:11 GMT", + "Date": "Wed, 16 Jun 2021 00:19:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3ffd5dcf-d537-404d-afed-088255293228", - "x-ms-ratelimit-remaining-subscription-reads": "11554", - "x-ms-request-id": "3ffd5dcf-d537-404d-afed-088255293228", - "x-ms-routing-request-id": "WESTUS2:20210519T185512Z:3ffd5dcf-d537-404d-afed-088255293228" + "x-ms-correlation-request-id": "b2b5580f-46ae-4fdd-a2f5-12969c655d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "b2b5580f-46ae-4fdd-a2f5-12969c655d5f", + "x-ms-routing-request-id": "WESTUS2:20210616T001932Z:b2b5580f-46ae-4fdd-a2f5-12969c655d5f" }, "ResponseBody": [] }, @@ -9365,7 +9508,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3c3f491f0e85681b9475f693abfe703", "x-ms-return-client-request-id": "true" }, @@ -9374,17 +9517,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:12 GMT", + "Date": "Wed, 16 Jun 2021 00:19:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9f9ccc97-24b2-4cac-8076-e7812533ca2c", - "x-ms-ratelimit-remaining-subscription-reads": "11552", - "x-ms-request-id": "9f9ccc97-24b2-4cac-8076-e7812533ca2c", - "x-ms-routing-request-id": "WESTUS2:20210519T185513Z:9f9ccc97-24b2-4cac-8076-e7812533ca2c" + "x-ms-correlation-request-id": "05bea35a-85a5-4a34-9951-eeeebec5dc33", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "05bea35a-85a5-4a34-9951-eeeebec5dc33", + "x-ms-routing-request-id": "WESTUS2:20210616T001933Z:05bea35a-85a5-4a34-9951-eeeebec5dc33" }, "ResponseBody": [] }, @@ -9393,7 +9536,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2556a25a0c12312b55efee9656b36b05", "x-ms-return-client-request-id": "true" }, @@ -9402,17 +9545,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:13 GMT", + "Date": "Wed, 16 Jun 2021 00:19:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2e32132f-24eb-4fee-a4b1-9e6891b4df60", - "x-ms-ratelimit-remaining-subscription-reads": "11550", - "x-ms-request-id": "2e32132f-24eb-4fee-a4b1-9e6891b4df60", - "x-ms-routing-request-id": "WESTUS2:20210519T185514Z:2e32132f-24eb-4fee-a4b1-9e6891b4df60" + "x-ms-correlation-request-id": "4a9c0bc5-8775-48a3-b7a1-cf71d069eb6b", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "4a9c0bc5-8775-48a3-b7a1-cf71d069eb6b", + "x-ms-routing-request-id": "WESTUS2:20210616T001934Z:4a9c0bc5-8775-48a3-b7a1-cf71d069eb6b" }, "ResponseBody": [] }, @@ -9421,7 +9564,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f51bf99dc2b9001c2f4245a090a9ca4", "x-ms-return-client-request-id": "true" }, @@ -9430,17 +9573,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:14 GMT", + "Date": "Wed, 16 Jun 2021 00:19:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3dad8799-80e0-4c56-9fab-0ab588b9ab62", - "x-ms-ratelimit-remaining-subscription-reads": "11548", - "x-ms-request-id": "3dad8799-80e0-4c56-9fab-0ab588b9ab62", - "x-ms-routing-request-id": "WESTUS2:20210519T185515Z:3dad8799-80e0-4c56-9fab-0ab588b9ab62" + "x-ms-correlation-request-id": "5d5630a6-4521-4258-b468-e0a514a228c5", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "5d5630a6-4521-4258-b468-e0a514a228c5", + "x-ms-routing-request-id": "WESTUS2:20210616T001935Z:5d5630a6-4521-4258-b468-e0a514a228c5" }, "ResponseBody": [] }, @@ -9449,7 +9592,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac637c3a75158405c9928ef902ebff06", "x-ms-return-client-request-id": "true" }, @@ -9458,17 +9601,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:15 GMT", + "Date": "Wed, 16 Jun 2021 00:19:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f96f3ddb-8ff4-47db-8b22-150911439c0f", - "x-ms-ratelimit-remaining-subscription-reads": "11546", - "x-ms-request-id": "f96f3ddb-8ff4-47db-8b22-150911439c0f", - "x-ms-routing-request-id": "WESTUS2:20210519T185516Z:f96f3ddb-8ff4-47db-8b22-150911439c0f" + "x-ms-correlation-request-id": "84104fea-387a-458d-a8d8-7bce9e6f580a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "84104fea-387a-458d-a8d8-7bce9e6f580a", + "x-ms-routing-request-id": "WESTUS2:20210616T001936Z:84104fea-387a-458d-a8d8-7bce9e6f580a" }, "ResponseBody": [] }, @@ -9477,7 +9620,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7acf5adba76d7ed7a1c5631ee8d0274a", "x-ms-return-client-request-id": "true" }, @@ -9486,17 +9629,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:16 GMT", + "Date": "Wed, 16 Jun 2021 00:19:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "16778007-6db0-49fc-80a5-917eded17a8d", - "x-ms-ratelimit-remaining-subscription-reads": "11544", - "x-ms-request-id": "16778007-6db0-49fc-80a5-917eded17a8d", - "x-ms-routing-request-id": "WESTUS2:20210519T185517Z:16778007-6db0-49fc-80a5-917eded17a8d" + "x-ms-correlation-request-id": "115a80ab-e46a-4fee-a6d6-e571f04a0b7d", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "115a80ab-e46a-4fee-a6d6-e571f04a0b7d", + "x-ms-routing-request-id": "WESTUS2:20210616T001937Z:115a80ab-e46a-4fee-a6d6-e571f04a0b7d" }, "ResponseBody": [] }, @@ -9505,7 +9648,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d95b4952be4f23efbacd76994d078ed7", "x-ms-return-client-request-id": "true" }, @@ -9514,17 +9657,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:18 GMT", + "Date": "Wed, 16 Jun 2021 00:19:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fcee811b-d7bc-4125-b196-51463bff54e5", - "x-ms-ratelimit-remaining-subscription-reads": "11542", - "x-ms-request-id": "fcee811b-d7bc-4125-b196-51463bff54e5", - "x-ms-routing-request-id": "WESTUS2:20210519T185518Z:fcee811b-d7bc-4125-b196-51463bff54e5" + "x-ms-correlation-request-id": "fab3f32e-fe36-4429-8711-f51b85fd9612", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "fab3f32e-fe36-4429-8711-f51b85fd9612", + "x-ms-routing-request-id": "WESTUS2:20210616T001938Z:fab3f32e-fe36-4429-8711-f51b85fd9612" }, "ResponseBody": [] }, @@ -9533,7 +9676,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af7f1ef4213b9337a4e40b5012e79cf8", "x-ms-return-client-request-id": "true" }, @@ -9542,17 +9685,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:19 GMT", + "Date": "Wed, 16 Jun 2021 00:19:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7e5c9524-039e-445c-be39-fdf1bd772aa8", - "x-ms-ratelimit-remaining-subscription-reads": "11540", - "x-ms-request-id": "7e5c9524-039e-445c-be39-fdf1bd772aa8", - "x-ms-routing-request-id": "WESTUS2:20210519T185519Z:7e5c9524-039e-445c-be39-fdf1bd772aa8" + "x-ms-correlation-request-id": "73b9e4dd-c490-4faf-af31-95ade5211f63", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "73b9e4dd-c490-4faf-af31-95ade5211f63", + "x-ms-routing-request-id": "WESTUS2:20210616T001939Z:73b9e4dd-c490-4faf-af31-95ade5211f63" }, "ResponseBody": [] }, @@ -9561,7 +9704,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9a7436a268f1cb66aacc0a0303e3099", "x-ms-return-client-request-id": "true" }, @@ -9570,17 +9713,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:20 GMT", + "Date": "Wed, 16 Jun 2021 00:19:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "45f79c8a-7d05-4f8c-bca5-fffe8535b810", - "x-ms-ratelimit-remaining-subscription-reads": "11538", - "x-ms-request-id": "45f79c8a-7d05-4f8c-bca5-fffe8535b810", - "x-ms-routing-request-id": "WESTUS2:20210519T185520Z:45f79c8a-7d05-4f8c-bca5-fffe8535b810" + "x-ms-correlation-request-id": "898edba3-e634-4028-9528-eb4ec4ed587b", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "898edba3-e634-4028-9528-eb4ec4ed587b", + "x-ms-routing-request-id": "WESTUS2:20210616T001941Z:898edba3-e634-4028-9528-eb4ec4ed587b" }, "ResponseBody": [] }, @@ -9589,7 +9732,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9298c367751310f11c7346ab39f11d3", "x-ms-return-client-request-id": "true" }, @@ -9598,17 +9741,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:21 GMT", + "Date": "Wed, 16 Jun 2021 00:19:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0cec7a1d-f2ac-4927-822b-590b5955d99b", - "x-ms-ratelimit-remaining-subscription-reads": "11536", - "x-ms-request-id": "0cec7a1d-f2ac-4927-822b-590b5955d99b", - "x-ms-routing-request-id": "WESTUS2:20210519T185521Z:0cec7a1d-f2ac-4927-822b-590b5955d99b" + "x-ms-correlation-request-id": "26e477f5-d750-4d01-8cd5-81da279353b5", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "26e477f5-d750-4d01-8cd5-81da279353b5", + "x-ms-routing-request-id": "WESTUS2:20210616T001942Z:26e477f5-d750-4d01-8cd5-81da279353b5" }, "ResponseBody": [] }, @@ -9617,7 +9760,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "092e7e30d560ce476762458e60966266", "x-ms-return-client-request-id": "true" }, @@ -9626,17 +9769,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:22 GMT", + "Date": "Wed, 16 Jun 2021 00:19:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4e9eba83-a6c7-4471-8620-fb7ef523f1ad", - "x-ms-ratelimit-remaining-subscription-reads": "11534", - "x-ms-request-id": "4e9eba83-a6c7-4471-8620-fb7ef523f1ad", - "x-ms-routing-request-id": "WESTUS2:20210519T185522Z:4e9eba83-a6c7-4471-8620-fb7ef523f1ad" + "x-ms-correlation-request-id": "13ba4615-5b8e-4fac-b1d3-362bcb6298ec", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "13ba4615-5b8e-4fac-b1d3-362bcb6298ec", + "x-ms-routing-request-id": "WESTUS2:20210616T001943Z:13ba4615-5b8e-4fac-b1d3-362bcb6298ec" }, "ResponseBody": [] }, @@ -9645,7 +9788,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "851972b3d3bdf3a63476a7c8f14c69cb", "x-ms-return-client-request-id": "true" }, @@ -9654,17 +9797,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:23 GMT", + "Date": "Wed, 16 Jun 2021 00:19:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b7674281-33ef-4650-8331-f67724726d16", - "x-ms-ratelimit-remaining-subscription-reads": "11532", - "x-ms-request-id": "b7674281-33ef-4650-8331-f67724726d16", - "x-ms-routing-request-id": "WESTUS2:20210519T185523Z:b7674281-33ef-4650-8331-f67724726d16" + "x-ms-correlation-request-id": "64cfcd86-c7b8-43a6-8ecf-41bb7a090a1b", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "64cfcd86-c7b8-43a6-8ecf-41bb7a090a1b", + "x-ms-routing-request-id": "WESTUS2:20210616T001944Z:64cfcd86-c7b8-43a6-8ecf-41bb7a090a1b" }, "ResponseBody": [] }, @@ -9673,7 +9816,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b270ed9a270f6138455b62ef3280d07b", "x-ms-return-client-request-id": "true" }, @@ -9682,17 +9825,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:24 GMT", + "Date": "Wed, 16 Jun 2021 00:19:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9b444bae-d364-474a-a7ef-c0d09bec5a5a", - "x-ms-ratelimit-remaining-subscription-reads": "11530", - "x-ms-request-id": "9b444bae-d364-474a-a7ef-c0d09bec5a5a", - "x-ms-routing-request-id": "WESTUS2:20210519T185524Z:9b444bae-d364-474a-a7ef-c0d09bec5a5a" + "x-ms-correlation-request-id": "998ae4a9-2d00-4de4-96b8-dc6a5ae70fa2", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "998ae4a9-2d00-4de4-96b8-dc6a5ae70fa2", + "x-ms-routing-request-id": "WESTUS2:20210616T001945Z:998ae4a9-2d00-4de4-96b8-dc6a5ae70fa2" }, "ResponseBody": [] }, @@ -9701,7 +9844,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41b6ce648b855d15d73bd5ea2d7fdc1b", "x-ms-return-client-request-id": "true" }, @@ -9710,17 +9853,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:25 GMT", + "Date": "Wed, 16 Jun 2021 00:19:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cb842e5e-9fdd-42c9-bf44-b209c8afd960", - "x-ms-ratelimit-remaining-subscription-reads": "11528", - "x-ms-request-id": "cb842e5e-9fdd-42c9-bf44-b209c8afd960", - "x-ms-routing-request-id": "WESTUS2:20210519T185525Z:cb842e5e-9fdd-42c9-bf44-b209c8afd960" + "x-ms-correlation-request-id": "8124f37d-0d22-4d7b-a657-a04781acc834", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "8124f37d-0d22-4d7b-a657-a04781acc834", + "x-ms-routing-request-id": "WESTUS2:20210616T001946Z:8124f37d-0d22-4d7b-a657-a04781acc834" }, "ResponseBody": [] }, @@ -9729,7 +9872,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73f479f8b0268c5639b8406270b7c0b3", "x-ms-return-client-request-id": "true" }, @@ -9738,17 +9881,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:26 GMT", + "Date": "Wed, 16 Jun 2021 00:19:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d9d84591-206d-466d-9cd1-3f49afb70352", - "x-ms-ratelimit-remaining-subscription-reads": "11526", - "x-ms-request-id": "d9d84591-206d-466d-9cd1-3f49afb70352", - "x-ms-routing-request-id": "WESTUS2:20210519T185526Z:d9d84591-206d-466d-9cd1-3f49afb70352" + "x-ms-correlation-request-id": "38a6ec9b-1a4a-4094-bdbf-1fb6501f826f", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "38a6ec9b-1a4a-4094-bdbf-1fb6501f826f", + "x-ms-routing-request-id": "WESTUS2:20210616T001947Z:38a6ec9b-1a4a-4094-bdbf-1fb6501f826f" }, "ResponseBody": [] }, @@ -9757,7 +9900,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23632ca528950f45d813dad4514e33c5", "x-ms-return-client-request-id": "true" }, @@ -9766,17 +9909,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:27 GMT", + "Date": "Wed, 16 Jun 2021 00:19:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "33e5094d-0bc6-425e-92a2-0e017011b500", - "x-ms-ratelimit-remaining-subscription-reads": "11524", - "x-ms-request-id": "33e5094d-0bc6-425e-92a2-0e017011b500", - "x-ms-routing-request-id": "WESTUS2:20210519T185527Z:33e5094d-0bc6-425e-92a2-0e017011b500" + "x-ms-correlation-request-id": "f76d3ed7-6a57-475a-867b-77b369fe7d55", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "f76d3ed7-6a57-475a-867b-77b369fe7d55", + "x-ms-routing-request-id": "WESTUS2:20210616T001948Z:f76d3ed7-6a57-475a-867b-77b369fe7d55" }, "ResponseBody": [] }, @@ -9785,7 +9928,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8f6477e5d8cb454772907cd4ab2ec20", "x-ms-return-client-request-id": "true" }, @@ -9794,17 +9937,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:28 GMT", + "Date": "Wed, 16 Jun 2021 00:19:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "44d064f7-b13c-4dd0-a3fc-110e54376738", - "x-ms-ratelimit-remaining-subscription-reads": "11522", - "x-ms-request-id": "44d064f7-b13c-4dd0-a3fc-110e54376738", - "x-ms-routing-request-id": "WESTUS2:20210519T185528Z:44d064f7-b13c-4dd0-a3fc-110e54376738" + "x-ms-correlation-request-id": "0bf488f1-bc41-4607-a852-70bdb1e5e50d", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "0bf488f1-bc41-4607-a852-70bdb1e5e50d", + "x-ms-routing-request-id": "WESTUS2:20210616T001949Z:0bf488f1-bc41-4607-a852-70bdb1e5e50d" }, "ResponseBody": [] }, @@ -9813,7 +9956,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0144227ab91cd08533e49a13d5813bea", "x-ms-return-client-request-id": "true" }, @@ -9822,17 +9965,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:29 GMT", + "Date": "Wed, 16 Jun 2021 00:19:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cb29dbb7-99f1-465b-8fa6-460516b3e8ec", - "x-ms-ratelimit-remaining-subscription-reads": "11520", - "x-ms-request-id": "cb29dbb7-99f1-465b-8fa6-460516b3e8ec", - "x-ms-routing-request-id": "WESTUS2:20210519T185529Z:cb29dbb7-99f1-465b-8fa6-460516b3e8ec" + "x-ms-correlation-request-id": "0c423e19-91f7-4869-8c8f-c66d28d73ca4", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "0c423e19-91f7-4869-8c8f-c66d28d73ca4", + "x-ms-routing-request-id": "WESTUS2:20210616T001950Z:0c423e19-91f7-4869-8c8f-c66d28d73ca4" }, "ResponseBody": [] }, @@ -9841,7 +9984,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "29e37a8408c04826d7aeac6b2078c425", "x-ms-return-client-request-id": "true" }, @@ -9850,17 +9993,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:30 GMT", + "Date": "Wed, 16 Jun 2021 00:19:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4bcc54eb-53ef-4c8c-a986-f3f1465d753b", - "x-ms-ratelimit-remaining-subscription-reads": "11518", - "x-ms-request-id": "4bcc54eb-53ef-4c8c-a986-f3f1465d753b", - "x-ms-routing-request-id": "WESTUS2:20210519T185531Z:4bcc54eb-53ef-4c8c-a986-f3f1465d753b" + "x-ms-correlation-request-id": "bdca7944-ba4c-45ef-817b-319800072198", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "bdca7944-ba4c-45ef-817b-319800072198", + "x-ms-routing-request-id": "WESTUS2:20210616T001951Z:bdca7944-ba4c-45ef-817b-319800072198" }, "ResponseBody": [] }, @@ -9869,7 +10012,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e5aba263209c5a9c12684a7c241def5", "x-ms-return-client-request-id": "true" }, @@ -9878,17 +10021,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:31 GMT", + "Date": "Wed, 16 Jun 2021 00:19:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "db751c4a-a624-402f-8094-d818365f834e", - "x-ms-ratelimit-remaining-subscription-reads": "11516", - "x-ms-request-id": "db751c4a-a624-402f-8094-d818365f834e", - "x-ms-routing-request-id": "WESTUS2:20210519T185532Z:db751c4a-a624-402f-8094-d818365f834e" + "x-ms-correlation-request-id": "5a820944-da03-4fe6-bf06-acbc667cc112", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "5a820944-da03-4fe6-bf06-acbc667cc112", + "x-ms-routing-request-id": "WESTUS2:20210616T001952Z:5a820944-da03-4fe6-bf06-acbc667cc112" }, "ResponseBody": [] }, @@ -9897,7 +10040,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf481deec2ce725ffbfb2a6d0c19afbb", "x-ms-return-client-request-id": "true" }, @@ -9906,17 +10049,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:32 GMT", + "Date": "Wed, 16 Jun 2021 00:19:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "01c15714-5511-4b84-b21a-18f6cd460ce7", - "x-ms-ratelimit-remaining-subscription-reads": "11514", - "x-ms-request-id": "01c15714-5511-4b84-b21a-18f6cd460ce7", - "x-ms-routing-request-id": "WESTUS2:20210519T185533Z:01c15714-5511-4b84-b21a-18f6cd460ce7" + "x-ms-correlation-request-id": "3a2efed4-725a-41aa-bda4-615f756bff33", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "3a2efed4-725a-41aa-bda4-615f756bff33", + "x-ms-routing-request-id": "WESTUS2:20210616T001953Z:3a2efed4-725a-41aa-bda4-615f756bff33" }, "ResponseBody": [] }, @@ -9925,7 +10068,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1bec75200c2751e0d01e679a837f8695", "x-ms-return-client-request-id": "true" }, @@ -9934,17 +10077,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:33 GMT", + "Date": "Wed, 16 Jun 2021 00:19:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846", - "x-ms-ratelimit-remaining-subscription-reads": "11512", - "x-ms-request-id": "e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846", - "x-ms-routing-request-id": "WESTUS2:20210519T185534Z:e5769bc7-c7c9-4fc6-8dde-fa6ff6e7b846" + "x-ms-correlation-request-id": "95d6fba7-bb3c-4712-b148-4a3ded3eba73", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "95d6fba7-bb3c-4712-b148-4a3ded3eba73", + "x-ms-routing-request-id": "WESTUS2:20210616T001954Z:95d6fba7-bb3c-4712-b148-4a3ded3eba73" }, "ResponseBody": [] }, @@ -9953,7 +10096,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "037db6d0f52f64565ae7330e083cb8a8", "x-ms-return-client-request-id": "true" }, @@ -9962,17 +10105,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:34 GMT", + "Date": "Wed, 16 Jun 2021 00:19:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "522cc452-22c8-480f-8e7e-e3d950e5660b", - "x-ms-ratelimit-remaining-subscription-reads": "11510", - "x-ms-request-id": "522cc452-22c8-480f-8e7e-e3d950e5660b", - "x-ms-routing-request-id": "WESTUS2:20210519T185535Z:522cc452-22c8-480f-8e7e-e3d950e5660b" + "x-ms-correlation-request-id": "0b90cb01-40bf-4cb3-9368-02d8125b1dc7", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "0b90cb01-40bf-4cb3-9368-02d8125b1dc7", + "x-ms-routing-request-id": "WESTUS2:20210616T001955Z:0b90cb01-40bf-4cb3-9368-02d8125b1dc7" }, "ResponseBody": [] }, @@ -9981,81 +10124,1705 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c87c976c255e1cd3cf6feb05ac4ee7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 18:55:35 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:55 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "578d19a5-a5e5-4099-9c8e-2d437d1bec63", - "x-ms-ratelimit-remaining-subscription-reads": "11508", - "x-ms-request-id": "578d19a5-a5e5-4099-9c8e-2d437d1bec63", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:578d19a5-a5e5-4099-9c8e-2d437d1bec63" + "x-ms-correlation-request-id": "91113778-b496-4e3d-ab89-16c362fa16a8", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "91113778-b496-4e3d-ab89-16c362fa16a8", + "x-ms-routing-request-id": "WESTUS2:20210616T001956Z:91113778-b496-4e3d-ab89-16c362fa16a8" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "569d9474ac9c2b8b1f88c13fd9d24994", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:57 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "213b29dc-98f4-480c-acbb-91f2e3e6751e", - "x-ms-ratelimit-remaining-subscription-reads": "11507", - "x-ms-request-id": "213b29dc-98f4-480c-acbb-91f2e3e6751e", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:213b29dc-98f4-480c-acbb-91f2e3e6751e" + "x-ms-correlation-request-id": "c8380584-5db2-4e79-8089-9ec96e26bcdd", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "c8380584-5db2-4e79-8089-9ec96e26bcdd", + "x-ms-routing-request-id": "WESTUS2:20210616T001957Z:c8380584-5db2-4e79-8089-9ec96e26bcdd" }, - "ResponseBody": { - "value": [] - } + "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba24bf653af70d40e89cc638f6a50995", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d930a07c-2d7f-49e2-9e73-6095aae24a17", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "d930a07c-2d7f-49e2-9e73-6095aae24a17", + "x-ms-routing-request-id": "WESTUS2:20210616T001958Z:d930a07c-2d7f-49e2-9e73-6095aae24a17" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7399b6f8629fca0b3d5c2dcd018d076a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3b1a488d-33ea-44b0-8868-a805a47b29c7", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "3b1a488d-33ea-44b0-8868-a805a47b29c7", + "x-ms-routing-request-id": "WESTUS2:20210616T001959Z:3b1a488d-33ea-44b0-8868-a805a47b29c7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a4a6aad34a03a8454906d00e5523479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b8069237-ad97-4b35-8648-d5248eca201f", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "b8069237-ad97-4b35-8648-d5248eca201f", + "x-ms-routing-request-id": "WESTUS2:20210616T002000Z:b8069237-ad97-4b35-8648-d5248eca201f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "22472b7ed63803f5b35a7c9b0d730b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "412ef560-64be-4ca7-b522-2fe0c95e5919", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "412ef560-64be-4ca7-b522-2fe0c95e5919", + "x-ms-routing-request-id": "WESTUS2:20210616T002001Z:412ef560-64be-4ca7-b522-2fe0c95e5919" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c8b5c946e5ac3f5325f1f0ff40be4ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "58c0fea0-a2d5-4783-bc38-a2cc53240d57", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "58c0fea0-a2d5-4783-bc38-a2cc53240d57", + "x-ms-routing-request-id": "WESTUS2:20210616T002002Z:58c0fea0-a2d5-4783-bc38-a2cc53240d57" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d64eb327e546d6317447e746b8e92ce0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "13535fac-6b7b-4f7d-83c2-d40342ea41c1", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "13535fac-6b7b-4f7d-83c2-d40342ea41c1", + "x-ms-routing-request-id": "WESTUS2:20210616T002003Z:13535fac-6b7b-4f7d-83c2-d40342ea41c1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "886b1284a8c70f1e3583f0d9b7e60fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c913ac42-c4c7-46a9-b8fc-a00b5da101d3", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "c913ac42-c4c7-46a9-b8fc-a00b5da101d3", + "x-ms-routing-request-id": "WESTUS2:20210616T002004Z:c913ac42-c4c7-46a9-b8fc-a00b5da101d3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "597391753425ae142bb5171387af0b49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2865b622-45ff-406c-8b6f-29685dc23c8d", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "2865b622-45ff-406c-8b6f-29685dc23c8d", + "x-ms-routing-request-id": "WESTUS2:20210616T002005Z:2865b622-45ff-406c-8b6f-29685dc23c8d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e18a3e325ba07f23943ea1c3f5581f8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "56d1ef53-bfb0-4b8f-8fb8-f1453444f438", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "56d1ef53-bfb0-4b8f-8fb8-f1453444f438", + "x-ms-routing-request-id": "WESTUS2:20210616T002006Z:56d1ef53-bfb0-4b8f-8fb8-f1453444f438" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27d03f37d3754fbbfebd5d12910a8886", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0a0e0352-5abc-405f-916d-5af3e4a95fbf", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "0a0e0352-5abc-405f-916d-5af3e4a95fbf", + "x-ms-routing-request-id": "WESTUS2:20210616T002007Z:0a0e0352-5abc-405f-916d-5af3e4a95fbf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "78a6a7772d5b19076ef4c4e69350b9d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "283ea0b0-dc0d-444a-9665-07616fdc25c2", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "283ea0b0-dc0d-444a-9665-07616fdc25c2", + "x-ms-routing-request-id": "WESTUS2:20210616T002008Z:283ea0b0-dc0d-444a-9665-07616fdc25c2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "48dc8895e4de5fd3833ae2e2fe11ee8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3588eddf-cec0-4d07-93b5-89b85bf71294", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "3588eddf-cec0-4d07-93b5-89b85bf71294", + "x-ms-routing-request-id": "WESTUS2:20210616T002009Z:3588eddf-cec0-4d07-93b5-89b85bf71294" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d4b1ab6a7b1093237b7b9810ed4bcae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8a5a87e6-53cd-45b3-9047-0c549aaf87ea", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "8a5a87e6-53cd-45b3-9047-0c549aaf87ea", + "x-ms-routing-request-id": "WESTUS2:20210616T002010Z:8a5a87e6-53cd-45b3-9047-0c549aaf87ea" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "087c89033f2e93a8d447f4214b241a5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "76af0ad1-926d-4353-9093-3053983976c7", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "76af0ad1-926d-4353-9093-3053983976c7", + "x-ms-routing-request-id": "WESTUS2:20210616T002012Z:76af0ad1-926d-4353-9093-3053983976c7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "78303a056c04ee2255d211272b5151ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b3a8db33-6ad8-4401-905e-d709ea435bf2", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "b3a8db33-6ad8-4401-905e-d709ea435bf2", + "x-ms-routing-request-id": "WESTUS2:20210616T002013Z:b3a8db33-6ad8-4401-905e-d709ea435bf2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74df347ee594765b72b87969b211be12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4def5f14-2502-4789-b189-00ff9cf4a4bf", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "4def5f14-2502-4789-b189-00ff9cf4a4bf", + "x-ms-routing-request-id": "WESTUS2:20210616T002014Z:4def5f14-2502-4789-b189-00ff9cf4a4bf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d37b5c9c43a497a9678eb25c2e806882", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "96bb63d8-a7e7-4a16-afde-cd39835700b6", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "96bb63d8-a7e7-4a16-afde-cd39835700b6", + "x-ms-routing-request-id": "WESTUS2:20210616T002015Z:96bb63d8-a7e7-4a16-afde-cd39835700b6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "16a345f6a6451fc7dfb9064cf2b83b44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "610a89c9-be33-4dda-962d-517f4d3e72d5", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "610a89c9-be33-4dda-962d-517f4d3e72d5", + "x-ms-routing-request-id": "WESTUS2:20210616T002016Z:610a89c9-be33-4dda-962d-517f4d3e72d5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ce8bff137ed53a0a8a480c0633ff48f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1d98235b-5ef9-497a-bd81-ec6e4e89d6de", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "1d98235b-5ef9-497a-bd81-ec6e4e89d6de", + "x-ms-routing-request-id": "WESTUS2:20210616T002017Z:1d98235b-5ef9-497a-bd81-ec6e4e89d6de" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6d73f74fa76ef5cd945bf4ea3d5da4af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0ec48f5a-f7b2-473d-9ec7-751928d30d28", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "0ec48f5a-f7b2-473d-9ec7-751928d30d28", + "x-ms-routing-request-id": "WESTUS2:20210616T002018Z:0ec48f5a-f7b2-473d-9ec7-751928d30d28" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2f486e5299f577ac3b688cfc99c1ecdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e46db266-d411-4f9e-9a04-1fb2d5bd295e", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "e46db266-d411-4f9e-9a04-1fb2d5bd295e", + "x-ms-routing-request-id": "WESTUS2:20210616T002019Z:e46db266-d411-4f9e-9a04-1fb2d5bd295e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fbfd1471ce446cd531953a7a8920fd2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6003e81b-477d-4eef-8276-615100c65442", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "6003e81b-477d-4eef-8276-615100c65442", + "x-ms-routing-request-id": "WESTUS2:20210616T002020Z:6003e81b-477d-4eef-8276-615100c65442" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5b45ca318b7b5fb4afb32061bd05cd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "31fdea58-3b93-4ba1-9736-f90476acd87a", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "31fdea58-3b93-4ba1-9736-f90476acd87a", + "x-ms-routing-request-id": "WESTUS2:20210616T002021Z:31fdea58-3b93-4ba1-9736-f90476acd87a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2878146fa95f846b98dcfd605f32ed1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7ef8daff-2abc-488d-9478-662175d49b4b", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "7ef8daff-2abc-488d-9478-662175d49b4b", + "x-ms-routing-request-id": "WESTUS2:20210616T002022Z:7ef8daff-2abc-488d-9478-662175d49b4b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3c585e6b270d58281847b0489ccf5161", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ef59a47a-931f-413b-b530-8156ecd1ecf7", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "ef59a47a-931f-413b-b530-8156ecd1ecf7", + "x-ms-routing-request-id": "WESTUS2:20210616T002023Z:ef59a47a-931f-413b-b530-8156ecd1ecf7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "750b6738d4a7facdf12f2cda1b9b5618", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ef815058-e2ea-461b-b370-6635b8f35032", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "ef815058-e2ea-461b-b370-6635b8f35032", + "x-ms-routing-request-id": "WESTUS2:20210616T002024Z:ef815058-e2ea-461b-b370-6635b8f35032" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bc9a170d1f7747c6eb201018f923e8c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d060c83e-eea9-46b8-9558-0ef41d88a75a", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "d060c83e-eea9-46b8-9558-0ef41d88a75a", + "x-ms-routing-request-id": "WESTUS2:20210616T002025Z:d060c83e-eea9-46b8-9558-0ef41d88a75a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8279c8a78279673915e4bddfb4d3d7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "93cc87e9-05e3-4ac0-b119-b85b692e06a1", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "93cc87e9-05e3-4ac0-b119-b85b692e06a1", + "x-ms-routing-request-id": "WESTUS2:20210616T002026Z:93cc87e9-05e3-4ac0-b119-b85b692e06a1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "843a98f1943419e9a0c38a86c4b500ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0048d89d-c3bf-49eb-a6d1-d21bbfacce5c", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "0048d89d-c3bf-49eb-a6d1-d21bbfacce5c", + "x-ms-routing-request-id": "WESTUS2:20210616T002027Z:0048d89d-c3bf-49eb-a6d1-d21bbfacce5c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f5062475d7395f0a3042a18d4e84c9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "61307b20-e734-4ac3-99a7-bdb688e1bfb3", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "61307b20-e734-4ac3-99a7-bdb688e1bfb3", + "x-ms-routing-request-id": "WESTUS2:20210616T002028Z:61307b20-e734-4ac3-99a7-bdb688e1bfb3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "612692e363e8f694b20e5763eeecd2db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b31c1dfb-b730-4cea-b281-6b2164be6119", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "b31c1dfb-b730-4cea-b281-6b2164be6119", + "x-ms-routing-request-id": "WESTUS2:20210616T002029Z:b31c1dfb-b730-4cea-b281-6b2164be6119" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98957c5dbdfd9409a7a4e13069d044b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e33c2ecf-65f3-484e-83a0-85764f104bf9", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "e33c2ecf-65f3-484e-83a0-85764f104bf9", + "x-ms-routing-request-id": "WESTUS2:20210616T002030Z:e33c2ecf-65f3-484e-83a0-85764f104bf9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "31a3ec779f8fe3e5ce59cc65068da7b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5849a110-94ac-44f2-bebd-2541c9abb2b5", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "5849a110-94ac-44f2-bebd-2541c9abb2b5", + "x-ms-routing-request-id": "WESTUS2:20210616T002031Z:5849a110-94ac-44f2-bebd-2541c9abb2b5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "57ba4f31b35225a08992b94382648ce1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8836fcb4-f150-407a-9c1d-ccb4c224b8d6", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "8836fcb4-f150-407a-9c1d-ccb4c224b8d6", + "x-ms-routing-request-id": "WESTUS2:20210616T002032Z:8836fcb4-f150-407a-9c1d-ccb4c224b8d6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02ec9fc9a149be4c96b2caa3f0a48e1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7374fe8a-1876-466e-b6a4-153a260f0d7c", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "7374fe8a-1876-466e-b6a4-153a260f0d7c", + "x-ms-routing-request-id": "WESTUS2:20210616T002033Z:7374fe8a-1876-466e-b6a4-153a260f0d7c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1afe2afded15c3644b7ea7fce5a16169", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ec1ac77f-448d-49ff-8d04-24cf9f928629", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "ec1ac77f-448d-49ff-8d04-24cf9f928629", + "x-ms-routing-request-id": "WESTUS2:20210616T002034Z:ec1ac77f-448d-49ff-8d04-24cf9f928629" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "669bebcda5a08f6d02fcc1a0e9fc34e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4dd1f18f-5c6b-43bd-95ba-ca2fd016274a", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "4dd1f18f-5c6b-43bd-95ba-ca2fd016274a", + "x-ms-routing-request-id": "WESTUS2:20210616T002035Z:4dd1f18f-5c6b-43bd-95ba-ca2fd016274a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "57469f047165dccb3a29b6cbf950d8f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ede33b84-6330-4e27-935c-3cf80b52aae2", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "ede33b84-6330-4e27-935c-3cf80b52aae2", + "x-ms-routing-request-id": "WESTUS2:20210616T002036Z:ede33b84-6330-4e27-935c-3cf80b52aae2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "05d5605027085879bd6f18182bc4da4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2eb94f10-b89e-408b-aef7-b7c2586f4fbe", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "2eb94f10-b89e-408b-aef7-b7c2586f4fbe", + "x-ms-routing-request-id": "WESTUS2:20210616T002037Z:2eb94f10-b89e-408b-aef7-b7c2586f4fbe" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "46f8c3490a5b5c041fbf2b77eea296b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f4e1c283-598a-4d66-948b-958b1f3bda63", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "f4e1c283-598a-4d66-948b-958b1f3bda63", + "x-ms-routing-request-id": "WESTUS2:20210616T002039Z:f4e1c283-598a-4d66-948b-958b1f3bda63" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8850cc242f26dcdb26ee99f658b2b076", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b7dab135-cf8f-41ec-9f5e-e6edf5155a02", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "b7dab135-cf8f-41ec-9f5e-e6edf5155a02", + "x-ms-routing-request-id": "WESTUS2:20210616T002040Z:b7dab135-cf8f-41ec-9f5e-e6edf5155a02" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3681664e915745995c79e649fb02691b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bf4b9256-327f-4d4c-a20f-502261998ea4", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "bf4b9256-327f-4d4c-a20f-502261998ea4", + "x-ms-routing-request-id": "WESTUS2:20210616T002041Z:bf4b9256-327f-4d4c-a20f-502261998ea4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ff366d951731928e71b1f6c700d036c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1573e3f-f2bb-47c7-97c0-7b6e60be8795", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "c1573e3f-f2bb-47c7-97c0-7b6e60be8795", + "x-ms-routing-request-id": "WESTUS2:20210616T002042Z:c1573e3f-f2bb-47c7-97c0-7b6e60be8795" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8728b50f5f20925a320a2bad4992e023", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "39bc7e94-ce64-4996-a8a6-40b1dc9c4f6a", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "39bc7e94-ce64-4996-a8a6-40b1dc9c4f6a", + "x-ms-routing-request-id": "WESTUS2:20210616T002043Z:39bc7e94-ce64-4996-a8a6-40b1dc9c4f6a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f21d7e8550befd023e674e3c722cd44e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "03bf53d5-5072-4256-8f1b-964d493beb82", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "03bf53d5-5072-4256-8f1b-964d493beb82", + "x-ms-routing-request-id": "WESTUS2:20210616T002044Z:03bf53d5-5072-4256-8f1b-964d493beb82" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "463a7975e1da79fa0c612c68257bd055", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9fd08c0f-e085-4cae-83a1-9c2b591c29c8", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "9fd08c0f-e085-4cae-83a1-9c2b591c29c8", + "x-ms-routing-request-id": "WESTUS2:20210616T002045Z:9fd08c0f-e085-4cae-83a1-9c2b591c29c8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2e7fc3a11f0beadb22a49b8111e2005", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c9662191-e65a-4e27-9d7c-c9dad0e01fa9", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "c9662191-e65a-4e27-9d7c-c9dad0e01fa9", + "x-ms-routing-request-id": "WESTUS2:20210616T002046Z:c9662191-e65a-4e27-9d7c-c9dad0e01fa9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cf37dd369a58a34983a3e65d249ad7c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bec8fa08-68e4-40e4-a890-04704c86b8d2", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "bec8fa08-68e4-40e4-a890-04704c86b8d2", + "x-ms-routing-request-id": "WESTUS2:20210616T002047Z:bec8fa08-68e4-40e4-a890-04704c86b8d2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7501f997e245635dcc7b94af974268ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "58da7c65-7c8f-4d7e-a7ce-44831a309b63", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "58da7c65-7c8f-4d7e-a7ce-44831a309b63", + "x-ms-routing-request-id": "WESTUS2:20210616T002048Z:58da7c65-7c8f-4d7e-a7ce-44831a309b63" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "483226400144a0fcb2446f4d2b4f9a18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d9cae452-1122-4e9e-86a3-69e90f5977b9", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "d9cae452-1122-4e9e-86a3-69e90f5977b9", + "x-ms-routing-request-id": "WESTUS2:20210616T002049Z:d9cae452-1122-4e9e-86a3-69e90f5977b9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17218753ab1c54c07fd303dc069a0b40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a4793068-59b3-4bfc-b0fa-cf398c502c00", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "a4793068-59b3-4bfc-b0fa-cf398c502c00", + "x-ms-routing-request-id": "WESTUS2:20210616T002050Z:a4793068-59b3-4bfc-b0fa-cf398c502c00" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd1df83b8f68957efc61c3017310387c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d3d29aa3-3170-4595-a3b6-07ef6cfd9826", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "d3d29aa3-3170-4595-a3b6-07ef6cfd9826", + "x-ms-routing-request-id": "WESTUS2:20210616T002051Z:d3d29aa3-3170-4595-a3b6-07ef6cfd9826" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "105b7ce1502195d066dec970fd1f9917", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "858d0ace-1281-455b-af58-b5573ee2d5d1", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "858d0ace-1281-455b-af58-b5573ee2d5d1", + "x-ms-routing-request-id": "WESTUS2:20210616T002052Z:858d0ace-1281-455b-af58-b5573ee2d5d1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "33112e389c31c4b0098b1bbbe7bfe16e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "240d867a-dd5d-43c9-8098-383174f2b9d4", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "240d867a-dd5d-43c9-8098-383174f2b9d4", + "x-ms-routing-request-id": "WESTUS2:20210616T002053Z:240d867a-dd5d-43c9-8098-383174f2b9d4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8afb869bfb3eeb1f27889789c50d98dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dcaea077-7086-4657-82c8-321a9df70fc5", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "dcaea077-7086-4657-82c8-321a9df70fc5", + "x-ms-routing-request-id": "WESTUS2:20210616T002054Z:dcaea077-7086-4657-82c8-321a9df70fc5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "44c8abc705ff444acb9706963415ada6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0a95a32b-2d21-4395-833d-631f1aaf1231", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "0a95a32b-2d21-4395-833d-631f1aaf1231", + "x-ms-routing-request-id": "WESTUS2:20210616T002055Z:0a95a32b-2d21-4395-833d-631f1aaf1231" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg4MjktV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "76d55bfd0f243cd90e260ca80526fefc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "98720dbe-1c35-488f-988c-db55a7632793", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "98720dbe-1c35-488f-988c-db55a7632793", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:98720dbe-1c35-488f-988c-db55a7632793" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8829/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3cf43ef29cf6966e3cb6bea6f489b612", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba5dc490-5cfd-4e8b-9999-d2edef830881", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "ba5dc490-5cfd-4e8b-9999-d2edef830881", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:ba5dc490-5cfd-4e8b-9999-d2edef830881" + }, + "ResponseBody": { + "value": [] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a8cf1db2138b7b7d28c36d9f8a13fa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d23c6c3d-9c7b-41a6-abfd-276a3d50cceb", - "x-ms-ratelimit-remaining-subscription-reads": "11506", - "x-ms-request-id": "d23c6c3d-9c7b-41a6-abfd-276a3d50cceb", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:d23c6c3d-9c7b-41a6-abfd-276a3d50cceb" + "x-ms-correlation-request-id": "7ddd14a3-9111-4e90-8a54-f05433a9b584", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "7ddd14a3-9111-4e90-8a54-f05433a9b584", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:7ddd14a3-9111-4e90-8a54-f05433a9b584" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json index 538d65e18468..75d7f413c4e4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/MoveResources()Async.json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "62c7ffd95bc93377b56b58a67e3dc51a", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:02 GMT", + "Date": "Wed, 16 Jun 2021 00:16:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ff363d9-e5a3-4112-bff2-3ebf2444647d", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "8ff363d9-e5a3-4112-bff2-3ebf2444647d", - "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:8ff363d9-e5a3-4112-bff2-3ebf2444647d" + "x-ms-correlation-request-id": "7d35ac85-28df-4e5f-b0c4-ad5c3e2b1c9d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "7d35ac85-28df-4e5f-b0c4-ad5c3e2b1c9d", + "x-ms-routing-request-id": "WESTUS2:20210616T001621Z:7d35ac85-28df-4e5f-b0c4-ad5c3e2b1c9d" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-00b66de4fc302b4690a5316fbbd3ca90-ca8afe786afda648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2add9b0d5a83c346b9d9fc3e2a6ebd56-bddbed73eefd1c4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc8eef23cfea30c1fb28b62b73cf1a18", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:02 GMT", + "Date": "Wed, 16 Jun 2021 00:16:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83d5cbca-f0c9-456e-8871-8eb89f3e2e06", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "83d5cbca-f0c9-456e-8871-8eb89f3e2e06", - "x-ms-routing-request-id": "WESTUS2:20210519T185202Z:83d5cbca-f0c9-456e-8871-8eb89f3e2e06" + "x-ms-correlation-request-id": "9df32f7f-1eef-438a-8d68-a01428e9836b", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "9df32f7f-1eef-438a-8d68-a01428e9836b", + "x-ms-routing-request-id": "WESTUS2:20210616T001622Z:9df32f7f-1eef-438a-8d68-a01428e9836b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-dc76fdb199d3534697d0fb586922e9d1-55ec07a94328f341-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-36aa0e3cd950b54bba6efc73e698ecfa-3253ff33af223d4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c652f79b3ba3ec286e2a2809467c513", "x-ms-return-client-request-id": "true" }, @@ -106,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dc0ec9e-8377-4bc2-a309-b0229960c33a", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "0dc0ec9e-8377-4bc2-a309-b0229960c33a", - "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:0dc0ec9e-8377-4bc2-a309-b0229960c33a" + "x-ms-correlation-request-id": "4a1a089d-c565-479b-baf7-ccb8295bbeda", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "4a1a089d-c565-479b-baf7-ccb8295bbeda", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:4a1a089d-c565-479b-baf7-ccb8295bbeda" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656", @@ -133,7 +137,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-568ab3734115fe468f499a1ef1d486b4-f243afcca09afc4c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "baa3f69e2fee3206ce33c107419c3e8e", "x-ms-return-client-request-id": "true" @@ -142,17 +145,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:03 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94423ecf-bea6-426e-8ccd-776b86130420", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "94423ecf-bea6-426e-8ccd-776b86130420", - "x-ms-routing-request-id": "WESTUS2:20210519T185203Z:94423ecf-bea6-426e-8ccd-776b86130420" + "x-ms-correlation-request-id": "839e3e4e-f890-4e2a-afdd-e6f3dafe71bd", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "839e3e4e-f890-4e2a-afdd-e6f3dafe71bd", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:839e3e4e-f890-4e2a-afdd-e6f3dafe71bd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -232,9 +235,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -305,9 +310,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -473,6 +480,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -520,9 +535,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -593,9 +610,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -762,6 +781,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -809,9 +836,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -883,9 +912,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -957,9 +988,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1030,9 +1063,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1105,9 +1140,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1180,9 +1217,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1211,6 +1250,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1266,9 +1306,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1339,9 +1381,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1411,9 +1455,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1474,9 +1520,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1546,9 +1594,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1611,9 +1661,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1676,9 +1728,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1749,9 +1803,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1814,7 +1870,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1857,9 +1914,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1911,9 +1970,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1964,9 +2025,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2016,9 +2079,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2063,6 +2128,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2106,9 +2172,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2152,9 +2220,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2198,9 +2268,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2384,9 +2456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2432,9 +2506,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2480,9 +2556,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2528,9 +2606,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2576,9 +2656,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2624,9 +2706,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2784,6 +2868,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2831,9 +2923,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2896,9 +2990,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2960,9 +3056,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3009,9 +3107,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3056,7 +3156,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3196,6 +3297,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3243,7 +3352,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3288,7 +3398,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3333,7 +3444,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3377,7 +3489,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3421,7 +3534,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3465,7 +3579,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3509,7 +3624,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3553,7 +3669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3597,9 +3714,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3663,9 +3782,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3715,9 +3836,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3860,6 +3983,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3907,9 +4038,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4052,6 +4185,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4069,15 +4210,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606/providers/Microsoft.Compute/availabilitySets/test-aset8673?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606/providers/Microsoft.Compute/availabilitySets/test-aset8673?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-568ab3734115fe468f499a1ef1d486b4-54b5e5a45f16694f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b495c3ad6864cb3c9d63ec1eb066c0f0", "x-ms-return-client-request-id": "true" }, @@ -4097,7 +4237,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4107,11 +4247,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "b495c3ad6864cb3c9d63ec1eb066c0f0", - "x-ms-correlation-request-id": "464d4072-5256-4ebb-98ac-4d74d8ad1950", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "9274db72-360a-4ea6-a5eb-39245107e35a", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:464d4072-5256-4ebb-98ac-4d74d8ad1950" + "x-ms-correlation-request-id": "bc4d192c-3993-4fe1-83d5-c66e7c192277", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1065", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "c54028c9-8fa5-406b-8f15-c28d0ae46b30", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:bc4d192c-3993-4fe1-83d5-c66e7c192277" }, "ResponseBody": [ "{\r\n", @@ -4136,7 +4276,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3e7f2645e2f35c9bad71d8a42e78267", "x-ms-return-client-request-id": "true" }, @@ -4146,15 +4286,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97d08147-121a-41d8-9988-4b1e74e4f31b", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "97d08147-121a-41d8-9988-4b1e74e4f31b", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:97d08147-121a-41d8-9988-4b1e74e4f31b" + "x-ms-correlation-request-id": "d05f9bff-d48c-4825-9dcf-af48ee273ecf", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "d05f9bff-d48c-4825-9dcf-af48ee273ecf", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:d05f9bff-d48c-4825-9dcf-af48ee273ecf" }, "ResponseBody": { "value": [ @@ -4177,7 +4317,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbefd072196a9519389554397cbcca65", "x-ms-return-client-request-id": "true" }, @@ -4187,15 +4327,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af299e15-9f94-4789-83bc-559fce168436", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "af299e15-9f94-4789-83bc-559fce168436", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:af299e15-9f94-4789-83bc-559fce168436" + "x-ms-correlation-request-id": "0f2131d8-d933-4afb-9733-21895edf1af2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "0f2131d8-d933-4afb-9733-21895edf1af2", + "x-ms-routing-request-id": "WESTUS2:20210616T001623Z:0f2131d8-d933-4afb-9733-21895edf1af2" }, "ResponseBody": { "value": [] @@ -4209,7 +4349,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdb9a51e1d7fb9c07cfb6a9dfa00bd78", "x-ms-return-client-request-id": "true" }, @@ -4223,17 +4363,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9f2bbbba-aaff-4b35-b874-5255a97b58bf", + "x-ms-correlation-request-id": "7841d816-4818-4f06-837e-eaba2ec7f762", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "9f2bbbba-aaff-4b35-b874-5255a97b58bf", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:9f2bbbba-aaff-4b35-b874-5255a97b58bf" + "x-ms-request-id": "7841d816-4818-4f06-837e-eaba2ec7f762", + "x-ms-routing-request-id": "WESTUS2:20210616T001624Z:7841d816-4818-4f06-837e-eaba2ec7f762" }, "ResponseBody": [] }, @@ -4242,7 +4382,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c6cb70dc42d55e70f357e6faf7b9b38", "x-ms-return-client-request-id": "true" }, @@ -4251,17 +4391,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:04 GMT", + "Date": "Wed, 16 Jun 2021 00:16:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378", - "x-ms-routing-request-id": "WESTUS2:20210519T185204Z:3bd9b9f4-bda8-4fa1-b9cc-4edcbd498378" + "x-ms-correlation-request-id": "47a3f232-53eb-4d1c-ac80-325fefbda83c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "47a3f232-53eb-4d1c-ac80-325fefbda83c", + "x-ms-routing-request-id": "WESTUS2:20210616T001624Z:47a3f232-53eb-4d1c-ac80-325fefbda83c" }, "ResponseBody": [] }, @@ -4270,7 +4410,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f891dcd799afd41dca6ee42eb226afec", "x-ms-return-client-request-id": "true" }, @@ -4279,17 +4419,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:05 GMT", + "Date": "Wed, 16 Jun 2021 00:16:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "173bac71-562f-4986-a1fd-55be2bb3dc2d", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "173bac71-562f-4986-a1fd-55be2bb3dc2d", - "x-ms-routing-request-id": "WESTUS2:20210519T185205Z:173bac71-562f-4986-a1fd-55be2bb3dc2d" + "x-ms-correlation-request-id": "e841ddbe-dfc5-4f9d-bc52-eebdf6162c67", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "e841ddbe-dfc5-4f9d-bc52-eebdf6162c67", + "x-ms-routing-request-id": "WESTUS2:20210616T001625Z:e841ddbe-dfc5-4f9d-bc52-eebdf6162c67" }, "ResponseBody": [] }, @@ -4298,7 +4438,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "438f6c422094e44b9cb82012cb6c9b5d", "x-ms-return-client-request-id": "true" }, @@ -4307,17 +4447,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:06 GMT", + "Date": "Wed, 16 Jun 2021 00:16:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "24a0a575-7fc9-43a9-8d39-517c823e8490", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "24a0a575-7fc9-43a9-8d39-517c823e8490", - "x-ms-routing-request-id": "WESTUS2:20210519T185206Z:24a0a575-7fc9-43a9-8d39-517c823e8490" + "x-ms-correlation-request-id": "8d2e2934-cb88-4af8-bd18-bb7465d5c66e", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "8d2e2934-cb88-4af8-bd18-bb7465d5c66e", + "x-ms-routing-request-id": "WESTUS2:20210616T001626Z:8d2e2934-cb88-4af8-bd18-bb7465d5c66e" }, "ResponseBody": [] }, @@ -4326,7 +4466,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ec332b5c1fe744e9997d2bedfb9a2e9", "x-ms-return-client-request-id": "true" }, @@ -4335,17 +4475,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:07 GMT", + "Date": "Wed, 16 Jun 2021 00:16:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "153c5d4c-1f0f-490f-9421-3e52bdd84744", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "153c5d4c-1f0f-490f-9421-3e52bdd84744", - "x-ms-routing-request-id": "WESTUS2:20210519T185207Z:153c5d4c-1f0f-490f-9421-3e52bdd84744" + "x-ms-correlation-request-id": "0281a4d2-c3d2-405a-8915-85ed920e469b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0281a4d2-c3d2-405a-8915-85ed920e469b", + "x-ms-routing-request-id": "WESTUS2:20210616T001627Z:0281a4d2-c3d2-405a-8915-85ed920e469b" }, "ResponseBody": [] }, @@ -4354,7 +4494,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "432d928658ebb6a491ad5bf6780b095d", "x-ms-return-client-request-id": "true" }, @@ -4363,17 +4503,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:08 GMT", + "Date": "Wed, 16 Jun 2021 00:16:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d91827e9-9dfd-4d77-8c45-e96742815b69", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "d91827e9-9dfd-4d77-8c45-e96742815b69", - "x-ms-routing-request-id": "WESTUS2:20210519T185208Z:d91827e9-9dfd-4d77-8c45-e96742815b69" + "x-ms-correlation-request-id": "10405884-14e5-4032-af93-c9c1067a1635", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "10405884-14e5-4032-af93-c9c1067a1635", + "x-ms-routing-request-id": "WESTUS2:20210616T001628Z:10405884-14e5-4032-af93-c9c1067a1635" }, "ResponseBody": [] }, @@ -4382,7 +4522,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "807887d3816281ee1e1ba9fc4d8c04e3", "x-ms-return-client-request-id": "true" }, @@ -4391,17 +4531,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:09 GMT", + "Date": "Wed, 16 Jun 2021 00:16:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bd839ac7-8a0d-4d9f-b62e-70a7f03de915", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "bd839ac7-8a0d-4d9f-b62e-70a7f03de915", - "x-ms-routing-request-id": "WESTUS2:20210519T185209Z:bd839ac7-8a0d-4d9f-b62e-70a7f03de915" + "x-ms-correlation-request-id": "a5719cc3-bb04-4436-bf53-1e94d95b768a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "a5719cc3-bb04-4436-bf53-1e94d95b768a", + "x-ms-routing-request-id": "WESTUS2:20210616T001629Z:a5719cc3-bb04-4436-bf53-1e94d95b768a" }, "ResponseBody": [] }, @@ -4410,7 +4550,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "388c3715573f5d718d0c9d516557fb8e", "x-ms-return-client-request-id": "true" }, @@ -4419,17 +4559,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:10 GMT", + "Date": "Wed, 16 Jun 2021 00:16:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c78caaad-1a80-4a91-abea-7e8abf0f7293", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "c78caaad-1a80-4a91-abea-7e8abf0f7293", - "x-ms-routing-request-id": "WESTUS2:20210519T185210Z:c78caaad-1a80-4a91-abea-7e8abf0f7293" + "x-ms-correlation-request-id": "2a2a4c7b-a520-4139-a42f-ed8bfe63bb29", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "2a2a4c7b-a520-4139-a42f-ed8bfe63bb29", + "x-ms-routing-request-id": "WESTUS2:20210616T001630Z:2a2a4c7b-a520-4139-a42f-ed8bfe63bb29" }, "ResponseBody": [] }, @@ -4438,7 +4578,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57ea758d22400586a3ab24d0aea86804", "x-ms-return-client-request-id": "true" }, @@ -4447,17 +4587,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:11 GMT", + "Date": "Wed, 16 Jun 2021 00:16:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "600dabff-4af4-47cb-89d0-a893e531b4e6", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "600dabff-4af4-47cb-89d0-a893e531b4e6", - "x-ms-routing-request-id": "WESTUS2:20210519T185211Z:600dabff-4af4-47cb-89d0-a893e531b4e6" + "x-ms-correlation-request-id": "087ae656-08fb-44fe-ab57-ff996917086e", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "087ae656-08fb-44fe-ab57-ff996917086e", + "x-ms-routing-request-id": "WESTUS2:20210616T001631Z:087ae656-08fb-44fe-ab57-ff996917086e" }, "ResponseBody": [] }, @@ -4466,7 +4606,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41e177a8d07e7c1e151af256e39d1bc7", "x-ms-return-client-request-id": "true" }, @@ -4475,17 +4615,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:12 GMT", + "Date": "Wed, 16 Jun 2021 00:16:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d0dce8e4-e41c-4095-b0c9-f73dcdb847ab", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "d0dce8e4-e41c-4095-b0c9-f73dcdb847ab", - "x-ms-routing-request-id": "WESTUS2:20210519T185213Z:d0dce8e4-e41c-4095-b0c9-f73dcdb847ab" + "x-ms-correlation-request-id": "c1726b78-d7c5-4fca-9966-b1ec3ba193b1", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "c1726b78-d7c5-4fca-9966-b1ec3ba193b1", + "x-ms-routing-request-id": "WESTUS2:20210616T001632Z:c1726b78-d7c5-4fca-9966-b1ec3ba193b1" }, "ResponseBody": [] }, @@ -4494,7 +4634,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d86e1b1fada1f2a2b087959333a1aee5", "x-ms-return-client-request-id": "true" }, @@ -4503,17 +4643,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:13 GMT", + "Date": "Wed, 16 Jun 2021 00:16:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c583dd5b-bad9-466a-9a6b-3fb048a3ec00", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "c583dd5b-bad9-466a-9a6b-3fb048a3ec00", - "x-ms-routing-request-id": "WESTUS2:20210519T185214Z:c583dd5b-bad9-466a-9a6b-3fb048a3ec00" + "x-ms-correlation-request-id": "3d0a68e9-09fb-4394-b230-93b3097da9bf", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "3d0a68e9-09fb-4394-b230-93b3097da9bf", + "x-ms-routing-request-id": "WESTUS2:20210616T001633Z:3d0a68e9-09fb-4394-b230-93b3097da9bf" }, "ResponseBody": [] }, @@ -4522,7 +4662,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eea898a3ba75bd0f566e412630302106", "x-ms-return-client-request-id": "true" }, @@ -4531,17 +4671,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:14 GMT", + "Date": "Wed, 16 Jun 2021 00:16:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b707ed1e-16cf-4b89-9f89-b21c0b146fc8", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "b707ed1e-16cf-4b89-9f89-b21c0b146fc8", - "x-ms-routing-request-id": "WESTUS2:20210519T185215Z:b707ed1e-16cf-4b89-9f89-b21c0b146fc8" + "x-ms-correlation-request-id": "c67c8893-92c0-4e8e-bfd1-dd7488651280", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "c67c8893-92c0-4e8e-bfd1-dd7488651280", + "x-ms-routing-request-id": "WESTUS2:20210616T001634Z:c67c8893-92c0-4e8e-bfd1-dd7488651280" }, "ResponseBody": [] }, @@ -4550,7 +4690,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93b05d909039fb62d4ee90f73b8b4974", "x-ms-return-client-request-id": "true" }, @@ -4559,17 +4699,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:15 GMT", + "Date": "Wed, 16 Jun 2021 00:16:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0f1f2c32-72fe-4273-8c71-4750bb806859", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "0f1f2c32-72fe-4273-8c71-4750bb806859", - "x-ms-routing-request-id": "WESTUS2:20210519T185216Z:0f1f2c32-72fe-4273-8c71-4750bb806859" + "x-ms-correlation-request-id": "cd4ca167-6186-4359-b262-50b7967bc52b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "cd4ca167-6186-4359-b262-50b7967bc52b", + "x-ms-routing-request-id": "WESTUS2:20210616T001635Z:cd4ca167-6186-4359-b262-50b7967bc52b" }, "ResponseBody": [] }, @@ -4578,7 +4718,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bb20d6b2cf465510cb182336b7cc280", "x-ms-return-client-request-id": "true" }, @@ -4587,17 +4727,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:16 GMT", + "Date": "Wed, 16 Jun 2021 00:16:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "00887efe-5518-436c-84ca-6dacabc80986", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "00887efe-5518-436c-84ca-6dacabc80986", - "x-ms-routing-request-id": "WESTUS2:20210519T185217Z:00887efe-5518-436c-84ca-6dacabc80986" + "x-ms-correlation-request-id": "8cf34536-0412-4699-95a6-a21b58c4c64e", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "8cf34536-0412-4699-95a6-a21b58c4c64e", + "x-ms-routing-request-id": "WESTUS2:20210616T001636Z:8cf34536-0412-4699-95a6-a21b58c4c64e" }, "ResponseBody": [] }, @@ -4606,7 +4746,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5028f651bf013ab36ad19862a1781ca", "x-ms-return-client-request-id": "true" }, @@ -4615,17 +4755,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:17 GMT", + "Date": "Wed, 16 Jun 2021 00:16:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d86a589d-c4f2-49ef-a7d6-b45403a3a63e", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "d86a589d-c4f2-49ef-a7d6-b45403a3a63e", - "x-ms-routing-request-id": "WESTUS2:20210519T185218Z:d86a589d-c4f2-49ef-a7d6-b45403a3a63e" + "x-ms-correlation-request-id": "997ddaff-e838-4fff-be49-873d9004de3d", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "997ddaff-e838-4fff-be49-873d9004de3d", + "x-ms-routing-request-id": "WESTUS2:20210616T001637Z:997ddaff-e838-4fff-be49-873d9004de3d" }, "ResponseBody": [] }, @@ -4634,7 +4774,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bacc25d67d63110c4b86870d2f9058", "x-ms-return-client-request-id": "true" }, @@ -4643,17 +4783,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:18 GMT", + "Date": "Wed, 16 Jun 2021 00:16:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "af739fe7-a000-456c-9618-b7035a90d92c", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "af739fe7-a000-456c-9618-b7035a90d92c", - "x-ms-routing-request-id": "WESTUS2:20210519T185219Z:af739fe7-a000-456c-9618-b7035a90d92c" + "x-ms-correlation-request-id": "e24ddf14-87d1-4d40-8bb0-1684847f97c2", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "e24ddf14-87d1-4d40-8bb0-1684847f97c2", + "x-ms-routing-request-id": "WESTUS2:20210616T001638Z:e24ddf14-87d1-4d40-8bb0-1684847f97c2" }, "ResponseBody": [] }, @@ -4662,7 +4802,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac910f2c73885084619e144713ca3af4", "x-ms-return-client-request-id": "true" }, @@ -4671,17 +4811,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:19 GMT", + "Date": "Wed, 16 Jun 2021 00:16:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "00bf5c06-303c-4f98-9050-1d1002de1c33", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "00bf5c06-303c-4f98-9050-1d1002de1c33", - "x-ms-routing-request-id": "WESTUS2:20210519T185220Z:00bf5c06-303c-4f98-9050-1d1002de1c33" + "x-ms-correlation-request-id": "1bc8fa9a-2db4-47d6-b2fd-3ee28c8f5253", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "1bc8fa9a-2db4-47d6-b2fd-3ee28c8f5253", + "x-ms-routing-request-id": "WESTUS2:20210616T001640Z:1bc8fa9a-2db4-47d6-b2fd-3ee28c8f5253" }, "ResponseBody": [] }, @@ -4690,7 +4830,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e0db7309fc28f027d9ec8a494240606", "x-ms-return-client-request-id": "true" }, @@ -4699,17 +4839,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:20 GMT", + "Date": "Wed, 16 Jun 2021 00:16:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2599e42f-b93c-4b7c-a484-2ea54160b02a", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "2599e42f-b93c-4b7c-a484-2ea54160b02a", - "x-ms-routing-request-id": "WESTUS2:20210519T185221Z:2599e42f-b93c-4b7c-a484-2ea54160b02a" + "x-ms-correlation-request-id": "0b8b2fb6-375e-4f6b-bbaf-9938054e7056", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "0b8b2fb6-375e-4f6b-bbaf-9938054e7056", + "x-ms-routing-request-id": "WESTUS2:20210616T001641Z:0b8b2fb6-375e-4f6b-bbaf-9938054e7056" }, "ResponseBody": [] }, @@ -4718,7 +4858,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a5ac01dd586b1414869c1dfc1c95041", "x-ms-return-client-request-id": "true" }, @@ -4727,17 +4867,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:21 GMT", + "Date": "Wed, 16 Jun 2021 00:16:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "59a5ff33-93c9-4a1f-9476-f1369ef79975", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "59a5ff33-93c9-4a1f-9476-f1369ef79975", - "x-ms-routing-request-id": "WESTUS2:20210519T185222Z:59a5ff33-93c9-4a1f-9476-f1369ef79975" + "x-ms-correlation-request-id": "28c14149-bcfb-463f-b287-91fda0df10b5", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "28c14149-bcfb-463f-b287-91fda0df10b5", + "x-ms-routing-request-id": "WESTUS2:20210616T001642Z:28c14149-bcfb-463f-b287-91fda0df10b5" }, "ResponseBody": [] }, @@ -4746,7 +4886,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56579210f1218c960c022eeaaadfbb3d", "x-ms-return-client-request-id": "true" }, @@ -4755,17 +4895,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:22 GMT", + "Date": "Wed, 16 Jun 2021 00:16:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "86bfa2a7-1979-4b78-b9e2-5c656e279524", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "86bfa2a7-1979-4b78-b9e2-5c656e279524", - "x-ms-routing-request-id": "WESTUS2:20210519T185223Z:86bfa2a7-1979-4b78-b9e2-5c656e279524" + "x-ms-correlation-request-id": "d6a67b66-b92b-4112-a1b0-455e0c958a4d", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "d6a67b66-b92b-4112-a1b0-455e0c958a4d", + "x-ms-routing-request-id": "WESTUS2:20210616T001643Z:d6a67b66-b92b-4112-a1b0-455e0c958a4d" }, "ResponseBody": [] }, @@ -4774,7 +4914,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "522a0d981f6f5a6e755b5558de23ceb4", "x-ms-return-client-request-id": "true" }, @@ -4783,17 +4923,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:23 GMT", + "Date": "Wed, 16 Jun 2021 00:16:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ec98fd7b-6287-48ae-aed8-4ed73f0ca404", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "ec98fd7b-6287-48ae-aed8-4ed73f0ca404", - "x-ms-routing-request-id": "WESTUS2:20210519T185224Z:ec98fd7b-6287-48ae-aed8-4ed73f0ca404" + "x-ms-correlation-request-id": "69d940e9-ae09-49dd-a8af-24a015bd5bf6", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "69d940e9-ae09-49dd-a8af-24a015bd5bf6", + "x-ms-routing-request-id": "WESTUS2:20210616T001644Z:69d940e9-ae09-49dd-a8af-24a015bd5bf6" }, "ResponseBody": [] }, @@ -4802,7 +4942,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0294874eafcc2be52acd0e83a7570768", "x-ms-return-client-request-id": "true" }, @@ -4811,17 +4951,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:24 GMT", + "Date": "Wed, 16 Jun 2021 00:16:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "997a84fe-cbb0-4170-8c36-1b1fff91662e", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "997a84fe-cbb0-4170-8c36-1b1fff91662e", - "x-ms-routing-request-id": "WESTUS2:20210519T185225Z:997a84fe-cbb0-4170-8c36-1b1fff91662e" + "x-ms-correlation-request-id": "b6feda89-fbf7-410e-94ee-43bcfd3c8dd1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "b6feda89-fbf7-410e-94ee-43bcfd3c8dd1", + "x-ms-routing-request-id": "WESTUS2:20210616T001645Z:b6feda89-fbf7-410e-94ee-43bcfd3c8dd1" }, "ResponseBody": [] }, @@ -4830,7 +4970,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b34684aefd9ff1d223fce0c59b3eaee9", "x-ms-return-client-request-id": "true" }, @@ -4839,17 +4979,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:25 GMT", + "Date": "Wed, 16 Jun 2021 00:16:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3a892701-1b2c-4dc6-968e-011d2419ddfd", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "3a892701-1b2c-4dc6-968e-011d2419ddfd", - "x-ms-routing-request-id": "WESTUS2:20210519T185226Z:3a892701-1b2c-4dc6-968e-011d2419ddfd" + "x-ms-correlation-request-id": "49393129-b547-4ea5-be41-e633a52dc1c4", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "49393129-b547-4ea5-be41-e633a52dc1c4", + "x-ms-routing-request-id": "WESTUS2:20210616T001646Z:49393129-b547-4ea5-be41-e633a52dc1c4" }, "ResponseBody": [] }, @@ -4858,7 +4998,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "239b7a34b84be97028fe27a111eab31d", "x-ms-return-client-request-id": "true" }, @@ -4867,17 +5007,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:26 GMT", + "Date": "Wed, 16 Jun 2021 00:16:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1a43db3c-22f8-40ef-9b7f-9ba54989e9ba", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "1a43db3c-22f8-40ef-9b7f-9ba54989e9ba", - "x-ms-routing-request-id": "WESTUS2:20210519T185227Z:1a43db3c-22f8-40ef-9b7f-9ba54989e9ba" + "x-ms-correlation-request-id": "18f58d91-82ad-415e-95e5-9006bf419051", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "18f58d91-82ad-415e-95e5-9006bf419051", + "x-ms-routing-request-id": "WESTUS2:20210616T001647Z:18f58d91-82ad-415e-95e5-9006bf419051" }, "ResponseBody": [] }, @@ -4886,7 +5026,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59a9ec541add5014b4a2decfce1f8fec", "x-ms-return-client-request-id": "true" }, @@ -4895,17 +5035,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:27 GMT", + "Date": "Wed, 16 Jun 2021 00:16:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "622ae42a-07d1-4eda-aa83-3537115784c4", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "622ae42a-07d1-4eda-aa83-3537115784c4", - "x-ms-routing-request-id": "WESTUS2:20210519T185228Z:622ae42a-07d1-4eda-aa83-3537115784c4" + "x-ms-correlation-request-id": "9888880d-658f-40f5-a243-49fbef89177b", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "9888880d-658f-40f5-a243-49fbef89177b", + "x-ms-routing-request-id": "WESTUS2:20210616T001648Z:9888880d-658f-40f5-a243-49fbef89177b" }, "ResponseBody": [] }, @@ -4914,7 +5054,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c4f251fe3bcf51d135d8aa1d630df39", "x-ms-return-client-request-id": "true" }, @@ -4923,17 +5063,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:28 GMT", + "Date": "Wed, 16 Jun 2021 00:16:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7a68cf20-0815-4689-abbf-804524bf015d", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "7a68cf20-0815-4689-abbf-804524bf015d", - "x-ms-routing-request-id": "WESTUS2:20210519T185229Z:7a68cf20-0815-4689-abbf-804524bf015d" + "x-ms-correlation-request-id": "e66047ef-ea90-421f-8917-561fbe56136d", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "e66047ef-ea90-421f-8917-561fbe56136d", + "x-ms-routing-request-id": "WESTUS2:20210616T001649Z:e66047ef-ea90-421f-8917-561fbe56136d" }, "ResponseBody": [] }, @@ -4942,7 +5082,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af70c3495494190b654a6ea8d9a11a08", "x-ms-return-client-request-id": "true" }, @@ -4951,17 +5091,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:29 GMT", + "Date": "Wed, 16 Jun 2021 00:16:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52", - "x-ms-routing-request-id": "WESTUS2:20210519T185230Z:a6b22fd0-5ffb-4eb3-af6b-5ecfc7ea4a52" + "x-ms-correlation-request-id": "ebee463a-2078-4ed0-9e0e-70b66c70d668", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "ebee463a-2078-4ed0-9e0e-70b66c70d668", + "x-ms-routing-request-id": "WESTUS2:20210616T001650Z:ebee463a-2078-4ed0-9e0e-70b66c70d668" }, "ResponseBody": [] }, @@ -4970,7 +5110,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec823b6e869a7161cfb3467f8f727a84", "x-ms-return-client-request-id": "true" }, @@ -4979,17 +5119,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:30 GMT", + "Date": "Wed, 16 Jun 2021 00:16:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e25a372d-e3e0-4829-892b-39ede25ed1ee", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "e25a372d-e3e0-4829-892b-39ede25ed1ee", - "x-ms-routing-request-id": "WESTUS2:20210519T185231Z:e25a372d-e3e0-4829-892b-39ede25ed1ee" + "x-ms-correlation-request-id": "c5a98458-87cd-445b-a454-f8c44c92b59c", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "c5a98458-87cd-445b-a454-f8c44c92b59c", + "x-ms-routing-request-id": "WESTUS2:20210616T001651Z:c5a98458-87cd-445b-a454-f8c44c92b59c" }, "ResponseBody": [] }, @@ -4998,7 +5138,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b86a5c3e0afcb571936c77174751c72", "x-ms-return-client-request-id": "true" }, @@ -5007,17 +5147,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:32 GMT", + "Date": "Wed, 16 Jun 2021 00:16:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cdc0d2dc-da8c-483f-a1ba-354e24b45df2", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "cdc0d2dc-da8c-483f-a1ba-354e24b45df2", - "x-ms-routing-request-id": "WESTUS2:20210519T185232Z:cdc0d2dc-da8c-483f-a1ba-354e24b45df2" + "x-ms-correlation-request-id": "b24bf33d-b7ba-4c8e-ae4a-348d86f145b4", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "b24bf33d-b7ba-4c8e-ae4a-348d86f145b4", + "x-ms-routing-request-id": "WESTUS2:20210616T001652Z:b24bf33d-b7ba-4c8e-ae4a-348d86f145b4" }, "ResponseBody": [] }, @@ -5026,7 +5166,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a328243f3aec29e61ffdfe10e8b89f3", "x-ms-return-client-request-id": "true" }, @@ -5035,17 +5175,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:33 GMT", + "Date": "Wed, 16 Jun 2021 00:16:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3ad19ed8-06a9-42fa-a1b2-b1f47070ca45", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "3ad19ed8-06a9-42fa-a1b2-b1f47070ca45", - "x-ms-routing-request-id": "WESTUS2:20210519T185233Z:3ad19ed8-06a9-42fa-a1b2-b1f47070ca45" + "x-ms-correlation-request-id": "3af45d5a-6274-4b1a-8a8b-443ea4964f20", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "3af45d5a-6274-4b1a-8a8b-443ea4964f20", + "x-ms-routing-request-id": "WESTUS2:20210616T001653Z:3af45d5a-6274-4b1a-8a8b-443ea4964f20" }, "ResponseBody": [] }, @@ -5054,7 +5194,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34e5ead00e1a8e59e3b7d264bff0fc5a", "x-ms-return-client-request-id": "true" }, @@ -5063,17 +5203,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:34 GMT", + "Date": "Wed, 16 Jun 2021 00:16:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "80e1ca30-b097-4b86-a180-1b7902cefb5a", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "80e1ca30-b097-4b86-a180-1b7902cefb5a", - "x-ms-routing-request-id": "WESTUS2:20210519T185234Z:80e1ca30-b097-4b86-a180-1b7902cefb5a" + "x-ms-correlation-request-id": "4c242c08-10fa-46f1-88ff-8c529b1c3bee", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4c242c08-10fa-46f1-88ff-8c529b1c3bee", + "x-ms-routing-request-id": "WESTUS2:20210616T001654Z:4c242c08-10fa-46f1-88ff-8c529b1c3bee" }, "ResponseBody": [] }, @@ -5082,7 +5222,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d3cd397e040cfd607c3aaaf0076bd8d", "x-ms-return-client-request-id": "true" }, @@ -5091,17 +5231,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:35 GMT", + "Date": "Wed, 16 Jun 2021 00:16:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5f908862-14f7-4f29-b626-b271229e1eea", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "5f908862-14f7-4f29-b626-b271229e1eea", - "x-ms-routing-request-id": "WESTUS2:20210519T185235Z:5f908862-14f7-4f29-b626-b271229e1eea" + "x-ms-correlation-request-id": "ab45c9e4-df30-4e51-8134-3897eba3bae5", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "ab45c9e4-df30-4e51-8134-3897eba3bae5", + "x-ms-routing-request-id": "WESTUS2:20210616T001655Z:ab45c9e4-df30-4e51-8134-3897eba3bae5" }, "ResponseBody": [] }, @@ -5110,7 +5250,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aa0d4ace88f355728a4b6f7203a0270", "x-ms-return-client-request-id": "true" }, @@ -5119,17 +5259,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:36 GMT", + "Date": "Wed, 16 Jun 2021 00:16:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b46543e8-c66b-407b-a7e8-a42276df1f41", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "b46543e8-c66b-407b-a7e8-a42276df1f41", - "x-ms-routing-request-id": "WESTUS2:20210519T185236Z:b46543e8-c66b-407b-a7e8-a42276df1f41" + "x-ms-correlation-request-id": "54aaee20-f503-4039-bf38-4fb666f194da", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "54aaee20-f503-4039-bf38-4fb666f194da", + "x-ms-routing-request-id": "WESTUS2:20210616T001656Z:54aaee20-f503-4039-bf38-4fb666f194da" }, "ResponseBody": [] }, @@ -5138,7 +5278,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a4985027c4ef0b214152c5763a98d6d", "x-ms-return-client-request-id": "true" }, @@ -5147,17 +5287,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:37 GMT", + "Date": "Wed, 16 Jun 2021 00:16:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8e991efb-6886-40ac-9702-a9a72988b1b2", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "8e991efb-6886-40ac-9702-a9a72988b1b2", - "x-ms-routing-request-id": "WESTUS2:20210519T185237Z:8e991efb-6886-40ac-9702-a9a72988b1b2" + "x-ms-correlation-request-id": "abf96929-394f-46bd-808e-3dd859f06a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "abf96929-394f-46bd-808e-3dd859f06a3f", + "x-ms-routing-request-id": "WESTUS2:20210616T001657Z:abf96929-394f-46bd-808e-3dd859f06a3f" }, "ResponseBody": [] }, @@ -5166,7 +5306,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebb745f9724fafca7b07e59b29dfafcc", "x-ms-return-client-request-id": "true" }, @@ -5175,17 +5315,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:38 GMT", + "Date": "Wed, 16 Jun 2021 00:16:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b89f918a-0a06-414a-9cc5-3cfb52d2fd4e", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "b89f918a-0a06-414a-9cc5-3cfb52d2fd4e", - "x-ms-routing-request-id": "WESTUS2:20210519T185238Z:b89f918a-0a06-414a-9cc5-3cfb52d2fd4e" + "x-ms-correlation-request-id": "a7cb22ed-d4b2-49ee-851c-111e26bb4791", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "a7cb22ed-d4b2-49ee-851c-111e26bb4791", + "x-ms-routing-request-id": "WESTUS2:20210616T001658Z:a7cb22ed-d4b2-49ee-851c-111e26bb4791" }, "ResponseBody": [] }, @@ -5194,7 +5334,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bad39c0822d303e21b0767abb00d17e", "x-ms-return-client-request-id": "true" }, @@ -5203,17 +5343,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:39 GMT", + "Date": "Wed, 16 Jun 2021 00:16:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "07684979-81da-42ec-ac45-5f3363b4b374", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "07684979-81da-42ec-ac45-5f3363b4b374", - "x-ms-routing-request-id": "WESTUS2:20210519T185239Z:07684979-81da-42ec-ac45-5f3363b4b374" + "x-ms-correlation-request-id": "5825cc25-6afd-4f46-bb78-94c08b650042", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "5825cc25-6afd-4f46-bb78-94c08b650042", + "x-ms-routing-request-id": "WESTUS2:20210616T001659Z:5825cc25-6afd-4f46-bb78-94c08b650042" }, "ResponseBody": [] }, @@ -5222,7 +5362,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dbfd491617828f21bb99bf479717c634", "x-ms-return-client-request-id": "true" }, @@ -5231,17 +5371,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:40 GMT", + "Date": "Wed, 16 Jun 2021 00:16:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b9ffaafd-4bdf-4490-9883-81b954c1944c", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "b9ffaafd-4bdf-4490-9883-81b954c1944c", - "x-ms-routing-request-id": "WESTUS2:20210519T185240Z:b9ffaafd-4bdf-4490-9883-81b954c1944c" + "x-ms-correlation-request-id": "8c53dbe0-2187-496b-b416-9781ea261cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "8c53dbe0-2187-496b-b416-9781ea261cdb", + "x-ms-routing-request-id": "WESTUS2:20210616T001700Z:8c53dbe0-2187-496b-b416-9781ea261cdb" }, "ResponseBody": [] }, @@ -5250,7 +5390,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a96606612fc77400686ca9ffc50f47a", "x-ms-return-client-request-id": "true" }, @@ -5259,17 +5399,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:41 GMT", + "Date": "Wed, 16 Jun 2021 00:17:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1716fdb-3fec-4d10-af41-280fd2adbf78", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "c1716fdb-3fec-4d10-af41-280fd2adbf78", - "x-ms-routing-request-id": "WESTUS2:20210519T185241Z:c1716fdb-3fec-4d10-af41-280fd2adbf78" + "x-ms-correlation-request-id": "a6c1bff1-4ec9-4c75-9073-e15cb853b639", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "a6c1bff1-4ec9-4c75-9073-e15cb853b639", + "x-ms-routing-request-id": "WESTUS2:20210616T001701Z:a6c1bff1-4ec9-4c75-9073-e15cb853b639" }, "ResponseBody": [] }, @@ -5278,7 +5418,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0846636d4e1a949181dbf93c3f7990a", "x-ms-return-client-request-id": "true" }, @@ -5287,17 +5427,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:42 GMT", + "Date": "Wed, 16 Jun 2021 00:17:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c4e52045-920a-45b2-b6e6-a90ea07cf226", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "c4e52045-920a-45b2-b6e6-a90ea07cf226", - "x-ms-routing-request-id": "WESTUS2:20210519T185242Z:c4e52045-920a-45b2-b6e6-a90ea07cf226" + "x-ms-correlation-request-id": "a4d76c0c-839c-4df4-8e57-9277c5ed4ab3", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "a4d76c0c-839c-4df4-8e57-9277c5ed4ab3", + "x-ms-routing-request-id": "WESTUS2:20210616T001702Z:a4d76c0c-839c-4df4-8e57-9277c5ed4ab3" }, "ResponseBody": [] }, @@ -5306,7 +5446,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a1341e9a76a04820985d4fc4c82936a", "x-ms-return-client-request-id": "true" }, @@ -5315,17 +5455,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:43 GMT", + "Date": "Wed, 16 Jun 2021 00:17:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "44ac4ff2-9501-49bc-9485-65492fcb56e1", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "44ac4ff2-9501-49bc-9485-65492fcb56e1", - "x-ms-routing-request-id": "WESTUS2:20210519T185243Z:44ac4ff2-9501-49bc-9485-65492fcb56e1" + "x-ms-correlation-request-id": "af3aa525-1845-4b21-a41d-e83fc30041e4", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "af3aa525-1845-4b21-a41d-e83fc30041e4", + "x-ms-routing-request-id": "WESTUS2:20210616T001703Z:af3aa525-1845-4b21-a41d-e83fc30041e4" }, "ResponseBody": [] }, @@ -5334,7 +5474,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "301044a5e692925216ed11de52acb40e", "x-ms-return-client-request-id": "true" }, @@ -5343,17 +5483,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:44 GMT", + "Date": "Wed, 16 Jun 2021 00:17:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc", - "x-ms-routing-request-id": "WESTUS2:20210519T185245Z:5e9f26bc-5c0e-44cd-9ebc-b38404e4a3bc" + "x-ms-correlation-request-id": "8a66fa9e-904f-4f0f-b048-c2d2ba9b7f0e", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8a66fa9e-904f-4f0f-b048-c2d2ba9b7f0e", + "x-ms-routing-request-id": "WESTUS2:20210616T001704Z:8a66fa9e-904f-4f0f-b048-c2d2ba9b7f0e" }, "ResponseBody": [] }, @@ -5362,7 +5502,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bbb5c0ed993c8f10e380d65cff4d5c96", "x-ms-return-client-request-id": "true" }, @@ -5371,17 +5511,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:45 GMT", + "Date": "Wed, 16 Jun 2021 00:17:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d4bb7663-64f0-4e93-91ff-9d6376afe31a", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "d4bb7663-64f0-4e93-91ff-9d6376afe31a", - "x-ms-routing-request-id": "WESTUS2:20210519T185246Z:d4bb7663-64f0-4e93-91ff-9d6376afe31a" + "x-ms-correlation-request-id": "96fb66af-c3ea-4315-8680-968db0fb83c9", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "96fb66af-c3ea-4315-8680-968db0fb83c9", + "x-ms-routing-request-id": "WESTUS2:20210616T001705Z:96fb66af-c3ea-4315-8680-968db0fb83c9" }, "ResponseBody": [] }, @@ -5390,7 +5530,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7fed558a68e60378ee81447d95a4b15c", "x-ms-return-client-request-id": "true" }, @@ -5399,17 +5539,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:46 GMT", + "Date": "Wed, 16 Jun 2021 00:17:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9afac18a-2f01-42b9-99d2-63542e31d89f", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "9afac18a-2f01-42b9-99d2-63542e31d89f", - "x-ms-routing-request-id": "WESTUS2:20210519T185247Z:9afac18a-2f01-42b9-99d2-63542e31d89f" + "x-ms-correlation-request-id": "647d6d36-3a87-4872-bb96-e1243025e906", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "647d6d36-3a87-4872-bb96-e1243025e906", + "x-ms-routing-request-id": "WESTUS2:20210616T001706Z:647d6d36-3a87-4872-bb96-e1243025e906" }, "ResponseBody": [] }, @@ -5418,7 +5558,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c0ec5d1d8cd0b2d34814d110ff692c8", "x-ms-return-client-request-id": "true" }, @@ -5427,17 +5567,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:47 GMT", + "Date": "Wed, 16 Jun 2021 00:17:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "589d967c-46f1-4cc2-9585-ded11efb1576", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "589d967c-46f1-4cc2-9585-ded11efb1576", - "x-ms-routing-request-id": "WESTUS2:20210519T185248Z:589d967c-46f1-4cc2-9585-ded11efb1576" + "x-ms-correlation-request-id": "1323c7ea-0c7c-42cd-afd5-22cdf5f6bbb8", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "1323c7ea-0c7c-42cd-afd5-22cdf5f6bbb8", + "x-ms-routing-request-id": "WESTUS2:20210616T001707Z:1323c7ea-0c7c-42cd-afd5-22cdf5f6bbb8" }, "ResponseBody": [] }, @@ -5446,7 +5586,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd547b9034bf842848b1ccbb5593f93f", "x-ms-return-client-request-id": "true" }, @@ -5455,17 +5595,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:48 GMT", + "Date": "Wed, 16 Jun 2021 00:17:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7481da4b-81df-4f2e-8463-7312ec76c202", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "7481da4b-81df-4f2e-8463-7312ec76c202", - "x-ms-routing-request-id": "WESTUS2:20210519T185249Z:7481da4b-81df-4f2e-8463-7312ec76c202" + "x-ms-correlation-request-id": "178e52ec-8adf-4868-a604-f898f49f2098", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "178e52ec-8adf-4868-a604-f898f49f2098", + "x-ms-routing-request-id": "WESTUS2:20210616T001708Z:178e52ec-8adf-4868-a604-f898f49f2098" }, "ResponseBody": [] }, @@ -5474,7 +5614,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "398a7acfd03fb2c927e24b651b66f3f7", "x-ms-return-client-request-id": "true" }, @@ -5483,17 +5623,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:49 GMT", + "Date": "Wed, 16 Jun 2021 00:17:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8cb90fab-43ae-495d-aeeb-37a93544eb84", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "8cb90fab-43ae-495d-aeeb-37a93544eb84", - "x-ms-routing-request-id": "WESTUS2:20210519T185250Z:8cb90fab-43ae-495d-aeeb-37a93544eb84" + "x-ms-correlation-request-id": "40daa5b8-8c77-4f94-b339-e837af52436a", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "40daa5b8-8c77-4f94-b339-e837af52436a", + "x-ms-routing-request-id": "WESTUS2:20210616T001709Z:40daa5b8-8c77-4f94-b339-e837af52436a" }, "ResponseBody": [] }, @@ -5502,7 +5642,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "19ec7beeb44f9c9d9d89441b0b72b6a1", "x-ms-return-client-request-id": "true" }, @@ -5511,17 +5651,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:50 GMT", + "Date": "Wed, 16 Jun 2021 00:17:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7a112e79-72f8-4b3b-9b2f-7f5d111f80ef", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "7a112e79-72f8-4b3b-9b2f-7f5d111f80ef", - "x-ms-routing-request-id": "WESTUS2:20210519T185251Z:7a112e79-72f8-4b3b-9b2f-7f5d111f80ef" + "x-ms-correlation-request-id": "b19571f3-399c-4070-9fbe-0840a873c8bd", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b19571f3-399c-4070-9fbe-0840a873c8bd", + "x-ms-routing-request-id": "WESTUS2:20210616T001711Z:b19571f3-399c-4070-9fbe-0840a873c8bd" }, "ResponseBody": [] }, @@ -5530,7 +5670,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95420d87596cc089b2a1d5dce9c269e1", "x-ms-return-client-request-id": "true" }, @@ -5539,17 +5679,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:51 GMT", + "Date": "Wed, 16 Jun 2021 00:17:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c6fffa8c-5774-49bf-a00b-754c7044f399", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "c6fffa8c-5774-49bf-a00b-754c7044f399", - "x-ms-routing-request-id": "WESTUS2:20210519T185252Z:c6fffa8c-5774-49bf-a00b-754c7044f399" + "x-ms-correlation-request-id": "ed211cac-7de1-48e4-860f-3267b2db0a89", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "ed211cac-7de1-48e4-860f-3267b2db0a89", + "x-ms-routing-request-id": "WESTUS2:20210616T001712Z:ed211cac-7de1-48e4-860f-3267b2db0a89" }, "ResponseBody": [] }, @@ -5558,7 +5698,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "daccd5bee0a61aefdded9bb58bada6b4", "x-ms-return-client-request-id": "true" }, @@ -5567,17 +5707,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:52 GMT", + "Date": "Wed, 16 Jun 2021 00:17:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "af989d9d-495a-44b9-939a-752afa1cd8f6", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "af989d9d-495a-44b9-939a-752afa1cd8f6", - "x-ms-routing-request-id": "WESTUS2:20210519T185253Z:af989d9d-495a-44b9-939a-752afa1cd8f6" + "x-ms-correlation-request-id": "89d6d9f1-625c-492d-bbc7-324d35c37fe1", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "89d6d9f1-625c-492d-bbc7-324d35c37fe1", + "x-ms-routing-request-id": "WESTUS2:20210616T001713Z:89d6d9f1-625c-492d-bbc7-324d35c37fe1" }, "ResponseBody": [] }, @@ -5586,7 +5726,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eddaa2c5e24958bf12c66addec0b2da", "x-ms-return-client-request-id": "true" }, @@ -5595,17 +5735,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:53 GMT", + "Date": "Wed, 16 Jun 2021 00:17:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "699033ed-73b1-4845-b4c6-5df863925d84", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "699033ed-73b1-4845-b4c6-5df863925d84", - "x-ms-routing-request-id": "WESTUS2:20210519T185254Z:699033ed-73b1-4845-b4c6-5df863925d84" + "x-ms-correlation-request-id": "2ba41cd2-0c48-4f0a-9d3a-15db7eb24c4c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "2ba41cd2-0c48-4f0a-9d3a-15db7eb24c4c", + "x-ms-routing-request-id": "WESTUS2:20210616T001714Z:2ba41cd2-0c48-4f0a-9d3a-15db7eb24c4c" }, "ResponseBody": [] }, @@ -5614,7 +5754,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "365c6220dba6a7fa1d27b87ebdd43404", "x-ms-return-client-request-id": "true" }, @@ -5623,17 +5763,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:54 GMT", + "Date": "Wed, 16 Jun 2021 00:17:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3ff65fc2-60b1-49f9-8a58-f249b0ce8371", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "3ff65fc2-60b1-49f9-8a58-f249b0ce8371", - "x-ms-routing-request-id": "WESTUS2:20210519T185255Z:3ff65fc2-60b1-49f9-8a58-f249b0ce8371" + "x-ms-correlation-request-id": "040ef565-1bf9-4154-88d5-371cde40eae9", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "040ef565-1bf9-4154-88d5-371cde40eae9", + "x-ms-routing-request-id": "WESTUS2:20210616T001715Z:040ef565-1bf9-4154-88d5-371cde40eae9" }, "ResponseBody": [] }, @@ -5642,7 +5782,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fb021fb5ae560bd4936e87979413c1c", "x-ms-return-client-request-id": "true" }, @@ -5651,17 +5791,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:55 GMT", + "Date": "Wed, 16 Jun 2021 00:17:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f66f4846-9239-485f-a905-f218157e9f24", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "f66f4846-9239-485f-a905-f218157e9f24", - "x-ms-routing-request-id": "WESTUS2:20210519T185256Z:f66f4846-9239-485f-a905-f218157e9f24" + "x-ms-correlation-request-id": "0976d191-e37c-4eed-b1da-1026198240a5", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "0976d191-e37c-4eed-b1da-1026198240a5", + "x-ms-routing-request-id": "WESTUS2:20210616T001716Z:0976d191-e37c-4eed-b1da-1026198240a5" }, "ResponseBody": [] }, @@ -5670,7 +5810,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2895c13a7051500daf36f0fca60dd81d", "x-ms-return-client-request-id": "true" }, @@ -5679,17 +5819,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:56 GMT", + "Date": "Wed, 16 Jun 2021 00:17:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2dd4c999-6dc1-4611-876b-fef677be3e77", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "2dd4c999-6dc1-4611-876b-fef677be3e77", - "x-ms-routing-request-id": "WESTUS2:20210519T185257Z:2dd4c999-6dc1-4611-876b-fef677be3e77" + "x-ms-correlation-request-id": "ab91dc1b-7648-45a0-a4e5-ebfa1baf5b61", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "ab91dc1b-7648-45a0-a4e5-ebfa1baf5b61", + "x-ms-routing-request-id": "WESTUS2:20210616T001717Z:ab91dc1b-7648-45a0-a4e5-ebfa1baf5b61" }, "ResponseBody": [] }, @@ -5698,7 +5838,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bdb262f7730fc5f5a5fcec70f2802edb", "x-ms-return-client-request-id": "true" }, @@ -5707,17 +5847,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:57 GMT", + "Date": "Wed, 16 Jun 2021 00:17:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c09edefc-9a5b-4eb6-972b-2361dbb40c00", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "c09edefc-9a5b-4eb6-972b-2361dbb40c00", - "x-ms-routing-request-id": "WESTUS2:20210519T185258Z:c09edefc-9a5b-4eb6-972b-2361dbb40c00" + "x-ms-correlation-request-id": "a3f7abc4-7c01-491b-ad5a-ebe645f3438a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "a3f7abc4-7c01-491b-ad5a-ebe645f3438a", + "x-ms-routing-request-id": "WESTUS2:20210616T001718Z:a3f7abc4-7c01-491b-ad5a-ebe645f3438a" }, "ResponseBody": [] }, @@ -5726,7 +5866,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc439beb0b3f8ab3136090ae6ac0ba3b", "x-ms-return-client-request-id": "true" }, @@ -5735,17 +5875,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:58 GMT", + "Date": "Wed, 16 Jun 2021 00:17:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "88fcb95c-fd54-41d6-9895-4b87c2f261e1", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "88fcb95c-fd54-41d6-9895-4b87c2f261e1", - "x-ms-routing-request-id": "WESTUS2:20210519T185259Z:88fcb95c-fd54-41d6-9895-4b87c2f261e1" + "x-ms-correlation-request-id": "2a3ac23a-070d-41a6-8549-647c745bf9f9", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "2a3ac23a-070d-41a6-8549-647c745bf9f9", + "x-ms-routing-request-id": "WESTUS2:20210616T001719Z:2a3ac23a-070d-41a6-8549-647c745bf9f9" }, "ResponseBody": [] }, @@ -5754,7 +5894,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1782cb5d7f8ec70dcbcf8354839d5d2e", "x-ms-return-client-request-id": "true" }, @@ -5763,17 +5903,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:52:59 GMT", + "Date": "Wed, 16 Jun 2021 00:17:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "20e611ed-1e13-4491-a982-6fb9c0347e6e", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "20e611ed-1e13-4491-a982-6fb9c0347e6e", - "x-ms-routing-request-id": "WESTUS2:20210519T185300Z:20e611ed-1e13-4491-a982-6fb9c0347e6e" + "x-ms-correlation-request-id": "b948a30d-63fb-4cb4-9c14-a99ab45a8181", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "b948a30d-63fb-4cb4-9c14-a99ab45a8181", + "x-ms-routing-request-id": "WESTUS2:20210616T001720Z:b948a30d-63fb-4cb4-9c14-a99ab45a8181" }, "ResponseBody": [] }, @@ -5782,7 +5922,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a111408dcc9ebdeae28a9aee2465be5", "x-ms-return-client-request-id": "true" }, @@ -5791,17 +5931,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:00 GMT", + "Date": "Wed, 16 Jun 2021 00:17:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b58e00bc-542d-4321-b313-f6c271212696", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "b58e00bc-542d-4321-b313-f6c271212696", - "x-ms-routing-request-id": "WESTUS2:20210519T185301Z:b58e00bc-542d-4321-b313-f6c271212696" + "x-ms-correlation-request-id": "c9dc4069-10d3-49d0-a99e-277282a13b63", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "c9dc4069-10d3-49d0-a99e-277282a13b63", + "x-ms-routing-request-id": "WESTUS2:20210616T001721Z:c9dc4069-10d3-49d0-a99e-277282a13b63" }, "ResponseBody": [] }, @@ -5810,7 +5950,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2713b04216fe6c4d8e7b306f885f0675", "x-ms-return-client-request-id": "true" }, @@ -5819,17 +5959,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:01 GMT", + "Date": "Wed, 16 Jun 2021 00:17:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8", - "x-ms-routing-request-id": "WESTUS2:20210519T185302Z:e4ad9a2c-eee7-474b-8ea0-bb8b615f8ec8" + "x-ms-correlation-request-id": "478d0ce1-e192-4696-bcc2-a5d5c2903a81", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "478d0ce1-e192-4696-bcc2-a5d5c2903a81", + "x-ms-routing-request-id": "WESTUS2:20210616T001722Z:478d0ce1-e192-4696-bcc2-a5d5c2903a81" }, "ResponseBody": [] }, @@ -5838,7 +5978,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55a66203afaf8071ed966866d55ee584", "x-ms-return-client-request-id": "true" }, @@ -5847,17 +5987,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:02 GMT", + "Date": "Wed, 16 Jun 2021 00:17:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ca131f5a-ecbc-4df0-83a2-254de1af58d6", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "ca131f5a-ecbc-4df0-83a2-254de1af58d6", - "x-ms-routing-request-id": "WESTUS2:20210519T185303Z:ca131f5a-ecbc-4df0-83a2-254de1af58d6" + "x-ms-correlation-request-id": "67dbddef-5e4d-4787-b67c-11287b7e2030", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "67dbddef-5e4d-4787-b67c-11287b7e2030", + "x-ms-routing-request-id": "WESTUS2:20210616T001723Z:67dbddef-5e4d-4787-b67c-11287b7e2030" }, "ResponseBody": [] }, @@ -5866,7 +6006,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2119e74358af130c7a47c4eac6e634e", "x-ms-return-client-request-id": "true" }, @@ -5875,17 +6015,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:03 GMT", + "Date": "Wed, 16 Jun 2021 00:17:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a8b9380d-fed9-408d-9780-66b051c864ee", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "a8b9380d-fed9-408d-9780-66b051c864ee", - "x-ms-routing-request-id": "WESTUS2:20210519T185304Z:a8b9380d-fed9-408d-9780-66b051c864ee" + "x-ms-correlation-request-id": "9b82f83d-c335-47d2-9523-404319ab7079", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "9b82f83d-c335-47d2-9523-404319ab7079", + "x-ms-routing-request-id": "WESTUS2:20210616T001724Z:9b82f83d-c335-47d2-9523-404319ab7079" }, "ResponseBody": [] }, @@ -5894,7 +6034,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80ab332105a092353e923a67aee6972f", "x-ms-return-client-request-id": "true" }, @@ -5903,17 +6043,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:05 GMT", + "Date": "Wed, 16 Jun 2021 00:17:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e26c139c-9c57-4eb4-89fb-b91a9325d678", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "e26c139c-9c57-4eb4-89fb-b91a9325d678", - "x-ms-routing-request-id": "WESTUS2:20210519T185305Z:e26c139c-9c57-4eb4-89fb-b91a9325d678" + "x-ms-correlation-request-id": "cf9cf924-8843-4028-a45e-0042237d0fae", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "cf9cf924-8843-4028-a45e-0042237d0fae", + "x-ms-routing-request-id": "WESTUS2:20210616T001725Z:cf9cf924-8843-4028-a45e-0042237d0fae" }, "ResponseBody": [] }, @@ -5922,7 +6062,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eafbab96344dcdeb31b58e0a3323d47e", "x-ms-return-client-request-id": "true" }, @@ -5931,17 +6071,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:06 GMT", + "Date": "Wed, 16 Jun 2021 00:17:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe", - "x-ms-routing-request-id": "WESTUS2:20210519T185306Z:02a5d1ee-91f7-41fb-8ed7-106e1c38ebfe" + "x-ms-correlation-request-id": "05b049b5-d2bf-490e-b8f1-549f28906bed", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "05b049b5-d2bf-490e-b8f1-549f28906bed", + "x-ms-routing-request-id": "WESTUS2:20210616T001726Z:05b049b5-d2bf-490e-b8f1-549f28906bed" }, "ResponseBody": [] }, @@ -5950,7 +6090,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a145193365b26fe4687e93f8fbc843e1", "x-ms-return-client-request-id": "true" }, @@ -5959,17 +6099,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:07 GMT", + "Date": "Wed, 16 Jun 2021 00:17:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6fe4ed97-2897-439a-8ab6-bdeb0de47298", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "6fe4ed97-2897-439a-8ab6-bdeb0de47298", - "x-ms-routing-request-id": "WESTUS2:20210519T185307Z:6fe4ed97-2897-439a-8ab6-bdeb0de47298" + "x-ms-correlation-request-id": "3b28aa83-07f5-4cc5-8713-d8f0594751eb", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "3b28aa83-07f5-4cc5-8713-d8f0594751eb", + "x-ms-routing-request-id": "WESTUS2:20210616T001727Z:3b28aa83-07f5-4cc5-8713-d8f0594751eb" }, "ResponseBody": [] }, @@ -5978,7 +6118,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00b84c0d7973ed0148dd4eeb762b5f1b", "x-ms-return-client-request-id": "true" }, @@ -5987,17 +6127,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:08 GMT", + "Date": "Wed, 16 Jun 2021 00:17:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "069d8468-3abb-441e-b7e1-cbd30a3697a1", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "069d8468-3abb-441e-b7e1-cbd30a3697a1", - "x-ms-routing-request-id": "WESTUS2:20210519T185308Z:069d8468-3abb-441e-b7e1-cbd30a3697a1" + "x-ms-correlation-request-id": "3c0f9742-8d0a-41af-89d1-14bcab412d96", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "3c0f9742-8d0a-41af-89d1-14bcab412d96", + "x-ms-routing-request-id": "WESTUS2:20210616T001728Z:3c0f9742-8d0a-41af-89d1-14bcab412d96" }, "ResponseBody": [] }, @@ -6006,7 +6146,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9434bbbdf5a0317cc68c81cea0f3d269", "x-ms-return-client-request-id": "true" }, @@ -6015,17 +6155,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:09 GMT", + "Date": "Wed, 16 Jun 2021 00:17:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3", - "x-ms-routing-request-id": "WESTUS2:20210519T185309Z:ec7aec7e-d6d9-4b3a-b85b-7ce4831658d3" + "x-ms-correlation-request-id": "38475126-ad2c-4e03-bd9c-62f11d8319cf", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "38475126-ad2c-4e03-bd9c-62f11d8319cf", + "x-ms-routing-request-id": "WESTUS2:20210616T001729Z:38475126-ad2c-4e03-bd9c-62f11d8319cf" }, "ResponseBody": [] }, @@ -6034,7 +6174,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6fdad71d46bba0b185858d416f9f83d", "x-ms-return-client-request-id": "true" }, @@ -6043,17 +6183,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:10 GMT", + "Date": "Wed, 16 Jun 2021 00:17:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8dd46d4d-1429-4c41-92c9-b9d73bb1155b", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "8dd46d4d-1429-4c41-92c9-b9d73bb1155b", - "x-ms-routing-request-id": "WESTUS2:20210519T185310Z:8dd46d4d-1429-4c41-92c9-b9d73bb1155b" + "x-ms-correlation-request-id": "1a787aa1-ba07-4783-95eb-ab1fce45f7a9", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "1a787aa1-ba07-4783-95eb-ab1fce45f7a9", + "x-ms-routing-request-id": "WESTUS2:20210616T001730Z:1a787aa1-ba07-4783-95eb-ab1fce45f7a9" }, "ResponseBody": [] }, @@ -6062,7 +6202,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f3a781fae941740cf8739e6f7324c55", "x-ms-return-client-request-id": "true" }, @@ -6071,17 +6211,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:11 GMT", + "Date": "Wed, 16 Jun 2021 00:17:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1c0332d9-f930-439c-a3dd-1166df074fe8", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "1c0332d9-f930-439c-a3dd-1166df074fe8", - "x-ms-routing-request-id": "WESTUS2:20210519T185311Z:1c0332d9-f930-439c-a3dd-1166df074fe8" + "x-ms-correlation-request-id": "1a382a7a-3aff-472c-a350-fe0f87ca5461", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "1a382a7a-3aff-472c-a350-fe0f87ca5461", + "x-ms-routing-request-id": "WESTUS2:20210616T001731Z:1a382a7a-3aff-472c-a350-fe0f87ca5461" }, "ResponseBody": [] }, @@ -6090,7 +6230,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c979e50b792de9b0b0797b489da71acd", "x-ms-return-client-request-id": "true" }, @@ -6099,17 +6239,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:12 GMT", + "Date": "Wed, 16 Jun 2021 00:17:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "debccb7d-edb6-4155-9913-7d0ae832b866", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "debccb7d-edb6-4155-9913-7d0ae832b866", - "x-ms-routing-request-id": "WESTUS2:20210519T185312Z:debccb7d-edb6-4155-9913-7d0ae832b866" + "x-ms-correlation-request-id": "2b80bbba-c82a-4039-9c11-5065c8af0572", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "2b80bbba-c82a-4039-9c11-5065c8af0572", + "x-ms-routing-request-id": "WESTUS2:20210616T001732Z:2b80bbba-c82a-4039-9c11-5065c8af0572" }, "ResponseBody": [] }, @@ -6118,7 +6258,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "28af449493b8c2d46de516e39a24c2e6", "x-ms-return-client-request-id": "true" }, @@ -6127,17 +6267,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:13 GMT", + "Date": "Wed, 16 Jun 2021 00:17:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "28012ce3-4cc7-45a6-8b3f-7804a155b4f6", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "28012ce3-4cc7-45a6-8b3f-7804a155b4f6", - "x-ms-routing-request-id": "WESTUS2:20210519T185313Z:28012ce3-4cc7-45a6-8b3f-7804a155b4f6" + "x-ms-correlation-request-id": "3321d3d2-ff3c-4711-9795-0f20d88870d2", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3321d3d2-ff3c-4711-9795-0f20d88870d2", + "x-ms-routing-request-id": "WESTUS2:20210616T001733Z:3321d3d2-ff3c-4711-9795-0f20d88870d2" }, "ResponseBody": [] }, @@ -6146,7 +6286,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31c9030b2e80a50fc7518e1a32f77a28", "x-ms-return-client-request-id": "true" }, @@ -6155,17 +6295,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:14 GMT", + "Date": "Wed, 16 Jun 2021 00:17:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "72c39980-a9a5-4120-b12c-49214683d42c", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "72c39980-a9a5-4120-b12c-49214683d42c", - "x-ms-routing-request-id": "WESTUS2:20210519T185314Z:72c39980-a9a5-4120-b12c-49214683d42c" + "x-ms-correlation-request-id": "04e660f8-6365-4a7f-9ae2-bf365eba46b1", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "04e660f8-6365-4a7f-9ae2-bf365eba46b1", + "x-ms-routing-request-id": "WESTUS2:20210616T001734Z:04e660f8-6365-4a7f-9ae2-bf365eba46b1" }, "ResponseBody": [] }, @@ -6174,7 +6314,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3526c6c2482789c10b65c4762cc4e8b", "x-ms-return-client-request-id": "true" }, @@ -6183,17 +6323,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:15 GMT", + "Date": "Wed, 16 Jun 2021 00:17:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7711561b-025c-43ac-9bcb-50d882e37508", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "7711561b-025c-43ac-9bcb-50d882e37508", - "x-ms-routing-request-id": "WESTUS2:20210519T185315Z:7711561b-025c-43ac-9bcb-50d882e37508" + "x-ms-correlation-request-id": "5eca54c1-6145-4830-9c25-b73fe6746765", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "5eca54c1-6145-4830-9c25-b73fe6746765", + "x-ms-routing-request-id": "WESTUS2:20210616T001735Z:5eca54c1-6145-4830-9c25-b73fe6746765" }, "ResponseBody": [] }, @@ -6202,7 +6342,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "993d95b6e9de654d3409606704b99075", "x-ms-return-client-request-id": "true" }, @@ -6211,17 +6351,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:16 GMT", + "Date": "Wed, 16 Jun 2021 00:17:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10", - "x-ms-routing-request-id": "WESTUS2:20210519T185316Z:2b0c67b9-bc56-42ad-91e2-bf6c7dac4b10" + "x-ms-correlation-request-id": "9b3db79d-66e5-476d-9793-fbad331dba22", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "9b3db79d-66e5-476d-9793-fbad331dba22", + "x-ms-routing-request-id": "WESTUS2:20210616T001736Z:9b3db79d-66e5-476d-9793-fbad331dba22" }, "ResponseBody": [] }, @@ -6230,7 +6370,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e76ee6b0fd2e663675021c9d2c743fa", "x-ms-return-client-request-id": "true" }, @@ -6239,17 +6379,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:17 GMT", + "Date": "Wed, 16 Jun 2021 00:17:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dfbf536d-a821-42b6-964a-02c53dac3658", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "dfbf536d-a821-42b6-964a-02c53dac3658", - "x-ms-routing-request-id": "WESTUS2:20210519T185317Z:dfbf536d-a821-42b6-964a-02c53dac3658" + "x-ms-correlation-request-id": "24bca1e1-54ed-45d5-84ed-e1bd0793db07", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "24bca1e1-54ed-45d5-84ed-e1bd0793db07", + "x-ms-routing-request-id": "WESTUS2:20210616T001737Z:24bca1e1-54ed-45d5-84ed-e1bd0793db07" }, "ResponseBody": [] }, @@ -6258,7 +6398,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d640302e1ba83491eed7e78c4357456", "x-ms-return-client-request-id": "true" }, @@ -6267,17 +6407,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:18 GMT", + "Date": "Wed, 16 Jun 2021 00:17:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d8ffa7df-a774-40a2-86d1-50740ebc563f", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "d8ffa7df-a774-40a2-86d1-50740ebc563f", - "x-ms-routing-request-id": "WESTUS2:20210519T185319Z:d8ffa7df-a774-40a2-86d1-50740ebc563f" + "x-ms-correlation-request-id": "73e2a505-2faf-4029-83eb-2055cb271bfe", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "73e2a505-2faf-4029-83eb-2055cb271bfe", + "x-ms-routing-request-id": "WESTUS2:20210616T001738Z:73e2a505-2faf-4029-83eb-2055cb271bfe" }, "ResponseBody": [] }, @@ -6286,7 +6426,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73dce6262056a6b93256318dc883926c", "x-ms-return-client-request-id": "true" }, @@ -6295,17 +6435,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:19 GMT", + "Date": "Wed, 16 Jun 2021 00:17:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6dd81838-6dee-4d3d-82f3-77a7cf24f999", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "6dd81838-6dee-4d3d-82f3-77a7cf24f999", - "x-ms-routing-request-id": "WESTUS2:20210519T185320Z:6dd81838-6dee-4d3d-82f3-77a7cf24f999" + "x-ms-correlation-request-id": "91cd7809-292b-4fd5-8910-e57777cc8588", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "91cd7809-292b-4fd5-8910-e57777cc8588", + "x-ms-routing-request-id": "WESTUS2:20210616T001739Z:91cd7809-292b-4fd5-8910-e57777cc8588" }, "ResponseBody": [] }, @@ -6314,7 +6454,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "016465c6f2558abba5f20fe491ea2231", "x-ms-return-client-request-id": "true" }, @@ -6323,17 +6463,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:20 GMT", + "Date": "Wed, 16 Jun 2021 00:17:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8c911d1d-1824-4299-8a6e-92a5a4179213", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "8c911d1d-1824-4299-8a6e-92a5a4179213", - "x-ms-routing-request-id": "WESTUS2:20210519T185321Z:8c911d1d-1824-4299-8a6e-92a5a4179213" + "x-ms-correlation-request-id": "4adc8ad9-db33-4b77-a792-c5059c343a50", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "4adc8ad9-db33-4b77-a792-c5059c343a50", + "x-ms-routing-request-id": "WESTUS2:20210616T001740Z:4adc8ad9-db33-4b77-a792-c5059c343a50" }, "ResponseBody": [] }, @@ -6342,7 +6482,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eba3cadccfebe2a44abd6a63afbbbb9b", "x-ms-return-client-request-id": "true" }, @@ -6351,17 +6491,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:21 GMT", + "Date": "Wed, 16 Jun 2021 00:17:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "568caadc-c029-4f1b-879e-bfcbaeebccfa", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "568caadc-c029-4f1b-879e-bfcbaeebccfa", - "x-ms-routing-request-id": "WESTUS2:20210519T185322Z:568caadc-c029-4f1b-879e-bfcbaeebccfa" + "x-ms-correlation-request-id": "92c81259-2b9b-41d9-8e6c-0cfca8f6a998", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "92c81259-2b9b-41d9-8e6c-0cfca8f6a998", + "x-ms-routing-request-id": "WESTUS2:20210616T001742Z:92c81259-2b9b-41d9-8e6c-0cfca8f6a998" }, "ResponseBody": [] }, @@ -6370,7 +6510,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eb2115b72d133002b52ce6311d41547", "x-ms-return-client-request-id": "true" }, @@ -6379,17 +6519,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:22 GMT", + "Date": "Wed, 16 Jun 2021 00:17:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7", - "x-ms-routing-request-id": "WESTUS2:20210519T185323Z:7b8c04bf-89c8-48d4-9f2c-0d28df2a06f7" + "x-ms-correlation-request-id": "7c4eff06-9514-4617-98a3-7fc4bc476de4", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "7c4eff06-9514-4617-98a3-7fc4bc476de4", + "x-ms-routing-request-id": "WESTUS2:20210616T001743Z:7c4eff06-9514-4617-98a3-7fc4bc476de4" }, "ResponseBody": [] }, @@ -6398,7 +6538,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fdb0ff34a6dff681c081b6988758dae9", "x-ms-return-client-request-id": "true" }, @@ -6407,17 +6547,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:23 GMT", + "Date": "Wed, 16 Jun 2021 00:17:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc", - "x-ms-routing-request-id": "WESTUS2:20210519T185324Z:4e26cfe7-d8d0-4fe9-a166-0910ce4aaafc" + "x-ms-correlation-request-id": "725f8cb7-868c-4e29-83d2-ecdda5843ee2", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "725f8cb7-868c-4e29-83d2-ecdda5843ee2", + "x-ms-routing-request-id": "WESTUS2:20210616T001744Z:725f8cb7-868c-4e29-83d2-ecdda5843ee2" }, "ResponseBody": [] }, @@ -6426,7 +6566,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f897337c3386960c970c0990141d176", "x-ms-return-client-request-id": "true" }, @@ -6435,17 +6575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:24 GMT", + "Date": "Wed, 16 Jun 2021 00:17:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7106d967-d16f-4262-8ba9-cac5f7eb8df8", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "7106d967-d16f-4262-8ba9-cac5f7eb8df8", - "x-ms-routing-request-id": "WESTUS2:20210519T185325Z:7106d967-d16f-4262-8ba9-cac5f7eb8df8" + "x-ms-correlation-request-id": "c8f4d8ec-dfec-4659-bd00-7319fb199274", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "c8f4d8ec-dfec-4659-bd00-7319fb199274", + "x-ms-routing-request-id": "WESTUS2:20210616T001745Z:c8f4d8ec-dfec-4659-bd00-7319fb199274" }, "ResponseBody": [] }, @@ -6454,7 +6594,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af2f23a7bd0bb4bb90bb9e4fbc68abd3", "x-ms-return-client-request-id": "true" }, @@ -6463,17 +6603,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:25 GMT", + "Date": "Wed, 16 Jun 2021 00:17:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9960f324-e94b-447e-83ec-9c8b3f108a37", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "9960f324-e94b-447e-83ec-9c8b3f108a37", - "x-ms-routing-request-id": "WESTUS2:20210519T185326Z:9960f324-e94b-447e-83ec-9c8b3f108a37" + "x-ms-correlation-request-id": "476d76f3-9c9b-41db-8edc-1a8817dbc07a", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "476d76f3-9c9b-41db-8edc-1a8817dbc07a", + "x-ms-routing-request-id": "WESTUS2:20210616T001746Z:476d76f3-9c9b-41db-8edc-1a8817dbc07a" }, "ResponseBody": [] }, @@ -6482,7 +6622,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d2be577964a700f9f46346fe6e8f57e", "x-ms-return-client-request-id": "true" }, @@ -6491,17 +6631,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:26 GMT", + "Date": "Wed, 16 Jun 2021 00:17:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "60e43b87-7a8a-4c93-88bd-3fb35faf3b09", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "60e43b87-7a8a-4c93-88bd-3fb35faf3b09", - "x-ms-routing-request-id": "WESTUS2:20210519T185327Z:60e43b87-7a8a-4c93-88bd-3fb35faf3b09" + "x-ms-correlation-request-id": "aa051f43-66a5-40fc-8ea5-9ee0109c42fc", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "aa051f43-66a5-40fc-8ea5-9ee0109c42fc", + "x-ms-routing-request-id": "WESTUS2:20210616T001747Z:aa051f43-66a5-40fc-8ea5-9ee0109c42fc" }, "ResponseBody": [] }, @@ -6510,7 +6650,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64f140b02b2879deb7d5ee7c2511ad60", "x-ms-return-client-request-id": "true" }, @@ -6519,17 +6659,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:27 GMT", + "Date": "Wed, 16 Jun 2021 00:17:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59", - "x-ms-routing-request-id": "WESTUS2:20210519T185328Z:7c99eaab-d3fa-4b1b-b3cb-2fba40eeef59" + "x-ms-correlation-request-id": "6b698604-e73f-4166-a9d6-25e63cd887c8", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6b698604-e73f-4166-a9d6-25e63cd887c8", + "x-ms-routing-request-id": "WESTUS2:20210616T001748Z:6b698604-e73f-4166-a9d6-25e63cd887c8" }, "ResponseBody": [] }, @@ -6538,7 +6678,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b22edc43415102b13be10c4894ccea8", "x-ms-return-client-request-id": "true" }, @@ -6547,17 +6687,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:28 GMT", + "Date": "Wed, 16 Jun 2021 00:17:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f50938db-635c-4f20-a9cd-91db030e83d4", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "f50938db-635c-4f20-a9cd-91db030e83d4", - "x-ms-routing-request-id": "WESTUS2:20210519T185329Z:f50938db-635c-4f20-a9cd-91db030e83d4" + "x-ms-correlation-request-id": "ad88b26f-bcf2-493a-8634-e7cf33f6d683", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "ad88b26f-bcf2-493a-8634-e7cf33f6d683", + "x-ms-routing-request-id": "WESTUS2:20210616T001749Z:ad88b26f-bcf2-493a-8634-e7cf33f6d683" }, "ResponseBody": [] }, @@ -6566,7 +6706,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b9e1fc646774baa06b2e574a8924b8d", "x-ms-return-client-request-id": "true" }, @@ -6575,17 +6715,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:29 GMT", + "Date": "Wed, 16 Jun 2021 00:17:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7", - "x-ms-routing-request-id": "WESTUS2:20210519T185330Z:d5bc95fe-b645-4a59-8c2d-8ebbe8bf52d7" + "x-ms-correlation-request-id": "9fcf9e17-c8d2-4c4d-890e-b729b870485d", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "9fcf9e17-c8d2-4c4d-890e-b729b870485d", + "x-ms-routing-request-id": "WESTUS2:20210616T001750Z:9fcf9e17-c8d2-4c4d-890e-b729b870485d" }, "ResponseBody": [] }, @@ -6594,7 +6734,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8abd399d9c67c6914e0506a1b1aef6b", "x-ms-return-client-request-id": "true" }, @@ -6603,17 +6743,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:30 GMT", + "Date": "Wed, 16 Jun 2021 00:17:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e99a6ec2-b05a-41f6-a64f-4cdffe16e041", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "e99a6ec2-b05a-41f6-a64f-4cdffe16e041", - "x-ms-routing-request-id": "WESTUS2:20210519T185331Z:e99a6ec2-b05a-41f6-a64f-4cdffe16e041" + "x-ms-correlation-request-id": "dba0da4b-5d8f-42f4-af0a-848349e9ef5d", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "dba0da4b-5d8f-42f4-af0a-848349e9ef5d", + "x-ms-routing-request-id": "WESTUS2:20210616T001751Z:dba0da4b-5d8f-42f4-af0a-848349e9ef5d" }, "ResponseBody": [] }, @@ -6622,7 +6762,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05b6460732727de942d615634eb76881", "x-ms-return-client-request-id": "true" }, @@ -6631,17 +6771,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:31 GMT", + "Date": "Wed, 16 Jun 2021 00:17:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "efec94c1-9ba9-451f-a189-bafca2c12fe8", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "efec94c1-9ba9-451f-a189-bafca2c12fe8", - "x-ms-routing-request-id": "WESTUS2:20210519T185332Z:efec94c1-9ba9-451f-a189-bafca2c12fe8" + "x-ms-correlation-request-id": "5ba6620d-389b-4935-9f52-19f16b155720", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "5ba6620d-389b-4935-9f52-19f16b155720", + "x-ms-routing-request-id": "WESTUS2:20210616T001752Z:5ba6620d-389b-4935-9f52-19f16b155720" }, "ResponseBody": [] }, @@ -6650,7 +6790,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b62b8272d5a1ece2b6226697f64030ec", "x-ms-return-client-request-id": "true" }, @@ -6659,17 +6799,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:32 GMT", + "Date": "Wed, 16 Jun 2021 00:17:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b8d53f61-2b95-44c2-9f30-72f8d5ee06fe", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "b8d53f61-2b95-44c2-9f30-72f8d5ee06fe", - "x-ms-routing-request-id": "WESTUS2:20210519T185333Z:b8d53f61-2b95-44c2-9f30-72f8d5ee06fe" + "x-ms-correlation-request-id": "442d3ae9-5de5-4951-9546-f547a776473b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "442d3ae9-5de5-4951-9546-f547a776473b", + "x-ms-routing-request-id": "WESTUS2:20210616T001753Z:442d3ae9-5de5-4951-9546-f547a776473b" }, "ResponseBody": [] }, @@ -6678,7 +6818,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "616d7ac246dc661bea2db6efc4052e5d", "x-ms-return-client-request-id": "true" }, @@ -6687,17 +6827,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:33 GMT", + "Date": "Wed, 16 Jun 2021 00:17:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d2b833c4-f7ad-493b-9791-8a352e25a9bd", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "d2b833c4-f7ad-493b-9791-8a352e25a9bd", - "x-ms-routing-request-id": "WESTUS2:20210519T185334Z:d2b833c4-f7ad-493b-9791-8a352e25a9bd" + "x-ms-correlation-request-id": "b7ef3cb4-54d1-45c8-bc82-7c4250d1648f", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "b7ef3cb4-54d1-45c8-bc82-7c4250d1648f", + "x-ms-routing-request-id": "WESTUS2:20210616T001754Z:b7ef3cb4-54d1-45c8-bc82-7c4250d1648f" }, "ResponseBody": [] }, @@ -6706,7 +6846,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98f7cf7739ef32ca64c94f50cb518702", "x-ms-return-client-request-id": "true" }, @@ -6715,17 +6855,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:34 GMT", + "Date": "Wed, 16 Jun 2021 00:17:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec", - "x-ms-routing-request-id": "WESTUS2:20210519T185335Z:cd2e40f6-aafa-46f0-bdcd-6a3e64fa0eec" + "x-ms-correlation-request-id": "97cb0fd0-ed53-4d07-82f3-0af3ec1e68d3", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "97cb0fd0-ed53-4d07-82f3-0af3ec1e68d3", + "x-ms-routing-request-id": "WESTUS2:20210616T001755Z:97cb0fd0-ed53-4d07-82f3-0af3ec1e68d3" }, "ResponseBody": [] }, @@ -6734,7 +6874,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4a028a506492ca467c4cc731ff227b0", "x-ms-return-client-request-id": "true" }, @@ -6743,17 +6883,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:35 GMT", + "Date": "Wed, 16 Jun 2021 00:17:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "52452592-d0ed-4e23-b647-2314979c6821", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "52452592-d0ed-4e23-b647-2314979c6821", - "x-ms-routing-request-id": "WESTUS2:20210519T185336Z:52452592-d0ed-4e23-b647-2314979c6821" + "x-ms-correlation-request-id": "3c17a73e-b5e6-4242-a099-33c2fd3af85e", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "3c17a73e-b5e6-4242-a099-33c2fd3af85e", + "x-ms-routing-request-id": "WESTUS2:20210616T001756Z:3c17a73e-b5e6-4242-a099-33c2fd3af85e" }, "ResponseBody": [] }, @@ -6762,7 +6902,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "261f09f3984889fdaf3bfd12f6ca9b98", "x-ms-return-client-request-id": "true" }, @@ -6771,17 +6911,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:36 GMT", + "Date": "Wed, 16 Jun 2021 00:17:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f5b9a0f1-e223-4643-9d56-e936298df42e", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "f5b9a0f1-e223-4643-9d56-e936298df42e", - "x-ms-routing-request-id": "WESTUS2:20210519T185337Z:f5b9a0f1-e223-4643-9d56-e936298df42e" + "x-ms-correlation-request-id": "a0a4c25a-5a35-4fda-b58c-367b5e9530a6", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "a0a4c25a-5a35-4fda-b58c-367b5e9530a6", + "x-ms-routing-request-id": "WESTUS2:20210616T001757Z:a0a4c25a-5a35-4fda-b58c-367b5e9530a6" }, "ResponseBody": [] }, @@ -6790,7 +6930,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c4ab3a6596471132acb312a6d561371", "x-ms-return-client-request-id": "true" }, @@ -6799,17 +6939,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:37 GMT", + "Date": "Wed, 16 Jun 2021 00:17:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "704419f9-96b0-4bf2-9a5b-43404b993d87", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "704419f9-96b0-4bf2-9a5b-43404b993d87", - "x-ms-routing-request-id": "WESTUS2:20210519T185338Z:704419f9-96b0-4bf2-9a5b-43404b993d87" + "x-ms-correlation-request-id": "1a6b0eb4-43c1-4cf6-9318-8e50abd59156", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "1a6b0eb4-43c1-4cf6-9318-8e50abd59156", + "x-ms-routing-request-id": "WESTUS2:20210616T001758Z:1a6b0eb4-43c1-4cf6-9318-8e50abd59156" }, "ResponseBody": [] }, @@ -6818,7 +6958,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c25c9ea260320cba2a17240e0992359d", "x-ms-return-client-request-id": "true" }, @@ -6827,17 +6967,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:38 GMT", + "Date": "Wed, 16 Jun 2021 00:17:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "82522d78-bfd2-4a16-82fd-ea8a5ff86665", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "82522d78-bfd2-4a16-82fd-ea8a5ff86665", - "x-ms-routing-request-id": "WESTUS2:20210519T185339Z:82522d78-bfd2-4a16-82fd-ea8a5ff86665" + "x-ms-correlation-request-id": "09f944d3-b430-4ca3-bca2-28fc62b650e3", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "09f944d3-b430-4ca3-bca2-28fc62b650e3", + "x-ms-routing-request-id": "WESTUS2:20210616T001759Z:09f944d3-b430-4ca3-bca2-28fc62b650e3" }, "ResponseBody": [] }, @@ -6846,7 +6986,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6bcd33288ba79a4bf5adfb7d66d21b59", "x-ms-return-client-request-id": "true" }, @@ -6855,17 +6995,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:40 GMT", + "Date": "Wed, 16 Jun 2021 00:18:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ad9c3c99-20ad-418e-bf43-57e4f4d0e04b", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "ad9c3c99-20ad-418e-bf43-57e4f4d0e04b", - "x-ms-routing-request-id": "WESTUS2:20210519T185340Z:ad9c3c99-20ad-418e-bf43-57e4f4d0e04b" + "x-ms-correlation-request-id": "134ca57a-ec27-4798-8e03-9a6977d1f507", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "134ca57a-ec27-4798-8e03-9a6977d1f507", + "x-ms-routing-request-id": "WESTUS2:20210616T001800Z:134ca57a-ec27-4798-8e03-9a6977d1f507" }, "ResponseBody": [] }, @@ -6874,7 +7014,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58708c28d86d4565f93d714c35046898", "x-ms-return-client-request-id": "true" }, @@ -6883,17 +7023,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:41 GMT", + "Date": "Wed, 16 Jun 2021 00:18:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ca4bb3b1-d075-40c1-9478-fb15dd2e5923", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "ca4bb3b1-d075-40c1-9478-fb15dd2e5923", - "x-ms-routing-request-id": "WESTUS2:20210519T185341Z:ca4bb3b1-d075-40c1-9478-fb15dd2e5923" + "x-ms-correlation-request-id": "f3774346-58db-41af-bd20-f5adef1ca113", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "f3774346-58db-41af-bd20-f5adef1ca113", + "x-ms-routing-request-id": "WESTUS2:20210616T001801Z:f3774346-58db-41af-bd20-f5adef1ca113" }, "ResponseBody": [] }, @@ -6902,7 +7042,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39029495a78816c952c2cc84653da657", "x-ms-return-client-request-id": "true" }, @@ -6911,17 +7051,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:42 GMT", + "Date": "Wed, 16 Jun 2021 00:18:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "39099c07-becb-453b-8a4f-d5bcabcde051", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "39099c07-becb-453b-8a4f-d5bcabcde051", - "x-ms-routing-request-id": "WESTUS2:20210519T185342Z:39099c07-becb-453b-8a4f-d5bcabcde051" + "x-ms-correlation-request-id": "4a40608a-f277-4364-8d40-f5499a39a0a7", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "4a40608a-f277-4364-8d40-f5499a39a0a7", + "x-ms-routing-request-id": "WESTUS2:20210616T001802Z:4a40608a-f277-4364-8d40-f5499a39a0a7" }, "ResponseBody": [] }, @@ -6930,7 +7070,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ce6cafcdd224f2fce88726919ff65f0", "x-ms-return-client-request-id": "true" }, @@ -6939,17 +7079,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:43 GMT", + "Date": "Wed, 16 Jun 2021 00:18:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7ff226b1-ab6b-470d-a9ad-fc0446410d57", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "7ff226b1-ab6b-470d-a9ad-fc0446410d57", - "x-ms-routing-request-id": "WESTUS2:20210519T185343Z:7ff226b1-ab6b-470d-a9ad-fc0446410d57" + "x-ms-correlation-request-id": "4ee59f0b-bbe8-4a85-8983-0ab36e0e1f48", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4ee59f0b-bbe8-4a85-8983-0ab36e0e1f48", + "x-ms-routing-request-id": "WESTUS2:20210616T001803Z:4ee59f0b-bbe8-4a85-8983-0ab36e0e1f48" }, "ResponseBody": [] }, @@ -6958,7 +7098,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2e76345e1d080d1c25905aa0ce0e0bb", "x-ms-return-client-request-id": "true" }, @@ -6967,17 +7107,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:44 GMT", + "Date": "Wed, 16 Jun 2021 00:18:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "eef9d712-30bb-42ef-bc70-61ba9f78df4b", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "eef9d712-30bb-42ef-bc70-61ba9f78df4b", - "x-ms-routing-request-id": "WESTUS2:20210519T185344Z:eef9d712-30bb-42ef-bc70-61ba9f78df4b" + "x-ms-correlation-request-id": "21476597-7ca0-4977-930f-e2b4ff5185b8", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "21476597-7ca0-4977-930f-e2b4ff5185b8", + "x-ms-routing-request-id": "WESTUS2:20210616T001804Z:21476597-7ca0-4977-930f-e2b4ff5185b8" }, "ResponseBody": [] }, @@ -6986,7 +7126,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a501a97eb1eb87664b26b003560fd53", "x-ms-return-client-request-id": "true" }, @@ -6995,17 +7135,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:45 GMT", + "Date": "Wed, 16 Jun 2021 00:18:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4e2d7759-549b-4d77-83a8-d1daad6c0f24", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "4e2d7759-549b-4d77-83a8-d1daad6c0f24", - "x-ms-routing-request-id": "WESTUS2:20210519T185345Z:4e2d7759-549b-4d77-83a8-d1daad6c0f24" + "x-ms-correlation-request-id": "26c85d7b-707d-4dd9-90cf-2cc87611654d", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "26c85d7b-707d-4dd9-90cf-2cc87611654d", + "x-ms-routing-request-id": "WESTUS2:20210616T001805Z:26c85d7b-707d-4dd9-90cf-2cc87611654d" }, "ResponseBody": [] }, @@ -7014,7 +7154,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "013fdb5dd3551a86f966bac8d78543ed", "x-ms-return-client-request-id": "true" }, @@ -7023,17 +7163,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:46 GMT", + "Date": "Wed, 16 Jun 2021 00:18:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c1940be-d276-48cb-8443-851f4b535ef1", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "2c1940be-d276-48cb-8443-851f4b535ef1", - "x-ms-routing-request-id": "WESTUS2:20210519T185346Z:2c1940be-d276-48cb-8443-851f4b535ef1" + "x-ms-correlation-request-id": "f37b151d-a322-4508-b7f4-d05f2bcb3751", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "f37b151d-a322-4508-b7f4-d05f2bcb3751", + "x-ms-routing-request-id": "WESTUS2:20210616T001806Z:f37b151d-a322-4508-b7f4-d05f2bcb3751" }, "ResponseBody": [] }, @@ -7042,7 +7182,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ffd2b6a7faae5ad2ec2f6e1e76d04b62", "x-ms-return-client-request-id": "true" }, @@ -7051,17 +7191,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:47 GMT", + "Date": "Wed, 16 Jun 2021 00:18:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "79a3497a-6f2a-4c69-8afa-f3e4ac4d0301", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "79a3497a-6f2a-4c69-8afa-f3e4ac4d0301", - "x-ms-routing-request-id": "WESTUS2:20210519T185347Z:79a3497a-6f2a-4c69-8afa-f3e4ac4d0301" + "x-ms-correlation-request-id": "48991eb8-3431-4a6d-9b60-f86c6a8d7ff9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "48991eb8-3431-4a6d-9b60-f86c6a8d7ff9", + "x-ms-routing-request-id": "WESTUS2:20210616T001807Z:48991eb8-3431-4a6d-9b60-f86c6a8d7ff9" }, "ResponseBody": [] }, @@ -7070,7 +7210,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "304db25cdea1c466933670b830aee1df", "x-ms-return-client-request-id": "true" }, @@ -7079,17 +7219,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:48 GMT", + "Date": "Wed, 16 Jun 2021 00:18:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e10997c0-72e9-4151-9ab8-384d43963ac0", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "e10997c0-72e9-4151-9ab8-384d43963ac0", - "x-ms-routing-request-id": "WESTUS2:20210519T185348Z:e10997c0-72e9-4151-9ab8-384d43963ac0" + "x-ms-correlation-request-id": "b0697f52-0ad7-41ac-9d65-8f837f9bb16e", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "b0697f52-0ad7-41ac-9d65-8f837f9bb16e", + "x-ms-routing-request-id": "WESTUS2:20210616T001808Z:b0697f52-0ad7-41ac-9d65-8f837f9bb16e" }, "ResponseBody": [] }, @@ -7098,7 +7238,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e587d6efd8d62a409e415266468a429", "x-ms-return-client-request-id": "true" }, @@ -7107,17 +7247,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:49 GMT", + "Date": "Wed, 16 Jun 2021 00:18:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "705358d8-8c60-472a-a7c3-3f8754681325", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "705358d8-8c60-472a-a7c3-3f8754681325", - "x-ms-routing-request-id": "WESTUS2:20210519T185349Z:705358d8-8c60-472a-a7c3-3f8754681325" + "x-ms-correlation-request-id": "3a9ea5f8-b195-468c-b125-b35965a9c83b", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "3a9ea5f8-b195-468c-b125-b35965a9c83b", + "x-ms-routing-request-id": "WESTUS2:20210616T001810Z:3a9ea5f8-b195-468c-b125-b35965a9c83b" }, "ResponseBody": [] }, @@ -7126,7 +7266,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "246b581a1337c94b500d6b788a1a293e", "x-ms-return-client-request-id": "true" }, @@ -7135,17 +7275,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:50 GMT", + "Date": "Wed, 16 Jun 2021 00:18:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cddd39ce-23dc-4c28-8cc3-b984ad1aa428", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-request-id": "cddd39ce-23dc-4c28-8cc3-b984ad1aa428", - "x-ms-routing-request-id": "WESTUS2:20210519T185351Z:cddd39ce-23dc-4c28-8cc3-b984ad1aa428" + "x-ms-correlation-request-id": "4f4334fa-e025-4442-9196-ac2f7064918a", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "4f4334fa-e025-4442-9196-ac2f7064918a", + "x-ms-routing-request-id": "WESTUS2:20210616T001811Z:4f4334fa-e025-4442-9196-ac2f7064918a" }, "ResponseBody": [] }, @@ -7154,7 +7294,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8b08f4ecc785fd40deb27bdc93f5f2b", "x-ms-return-client-request-id": "true" }, @@ -7163,17 +7303,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:51 GMT", + "Date": "Wed, 16 Jun 2021 00:18:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1ac61339-8965-4c5f-a4bc-ee049bf01249", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "1ac61339-8965-4c5f-a4bc-ee049bf01249", - "x-ms-routing-request-id": "WESTUS2:20210519T185352Z:1ac61339-8965-4c5f-a4bc-ee049bf01249" + "x-ms-correlation-request-id": "56d7c824-26a1-4a92-a34d-440223c28daf", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "56d7c824-26a1-4a92-a34d-440223c28daf", + "x-ms-routing-request-id": "WESTUS2:20210616T001812Z:56d7c824-26a1-4a92-a34d-440223c28daf" }, "ResponseBody": [] }, @@ -7182,7 +7322,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d79d4792bc425aa7328e2e7f912cd7ee", "x-ms-return-client-request-id": "true" }, @@ -7191,17 +7331,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:52 GMT", + "Date": "Wed, 16 Jun 2021 00:18:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8b1c34c5-79ff-4415-8598-fb29f620949b", - "x-ms-ratelimit-remaining-subscription-reads": "11707", - "x-ms-request-id": "8b1c34c5-79ff-4415-8598-fb29f620949b", - "x-ms-routing-request-id": "WESTUS2:20210519T185353Z:8b1c34c5-79ff-4415-8598-fb29f620949b" + "x-ms-correlation-request-id": "37307408-a8b4-440f-b32b-2f4196e8cb31", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "37307408-a8b4-440f-b32b-2f4196e8cb31", + "x-ms-routing-request-id": "WESTUS2:20210616T001813Z:37307408-a8b4-440f-b32b-2f4196e8cb31" }, "ResponseBody": [] }, @@ -7210,7 +7350,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5d8d6baabb74db0840c174cec8e0010", "x-ms-return-client-request-id": "true" }, @@ -7219,17 +7359,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:53 GMT", + "Date": "Wed, 16 Jun 2021 00:18:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "eff4d376-3c72-4065-ad55-c16e010defe7", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "eff4d376-3c72-4065-ad55-c16e010defe7", - "x-ms-routing-request-id": "WESTUS2:20210519T185354Z:eff4d376-3c72-4065-ad55-c16e010defe7" + "x-ms-correlation-request-id": "190cd4f2-60b2-4583-9496-1f99bf9a37d7", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "190cd4f2-60b2-4583-9496-1f99bf9a37d7", + "x-ms-routing-request-id": "WESTUS2:20210616T001814Z:190cd4f2-60b2-4583-9496-1f99bf9a37d7" }, "ResponseBody": [] }, @@ -7238,7 +7378,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "43e640ae527d91fbe755c6e99e54cde1", "x-ms-return-client-request-id": "true" }, @@ -7247,17 +7387,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:54 GMT", + "Date": "Wed, 16 Jun 2021 00:18:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "09bd1ed8-ff74-41dc-aafc-d77b2711cc7f", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "09bd1ed8-ff74-41dc-aafc-d77b2711cc7f", - "x-ms-routing-request-id": "WESTUS2:20210519T185355Z:09bd1ed8-ff74-41dc-aafc-d77b2711cc7f" + "x-ms-correlation-request-id": "348e5e91-f889-4713-ad94-cfb71406ce0a", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "348e5e91-f889-4713-ad94-cfb71406ce0a", + "x-ms-routing-request-id": "WESTUS2:20210616T001815Z:348e5e91-f889-4713-ad94-cfb71406ce0a" }, "ResponseBody": [] }, @@ -7266,7 +7406,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f20238138967e673964f5336a45b6ea3", "x-ms-return-client-request-id": "true" }, @@ -7275,17 +7415,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:55 GMT", + "Date": "Wed, 16 Jun 2021 00:18:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d4c1238e-2d21-4c32-b8b9-82cb7d93c220", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "d4c1238e-2d21-4c32-b8b9-82cb7d93c220", - "x-ms-routing-request-id": "WESTUS2:20210519T185356Z:d4c1238e-2d21-4c32-b8b9-82cb7d93c220" + "x-ms-correlation-request-id": "61c720b8-ebd9-4a92-b4ec-ac6db33af9c8", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "61c720b8-ebd9-4a92-b4ec-ac6db33af9c8", + "x-ms-routing-request-id": "WESTUS2:20210616T001816Z:61c720b8-ebd9-4a92-b4ec-ac6db33af9c8" }, "ResponseBody": [] }, @@ -7294,7 +7434,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51d11d8e94456871db46ee61e5c7ae30", "x-ms-return-client-request-id": "true" }, @@ -7303,17 +7443,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:56 GMT", + "Date": "Wed, 16 Jun 2021 00:18:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ed533611-50b3-4bb5-838a-553455f77ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "ed533611-50b3-4bb5-838a-553455f77ba1", - "x-ms-routing-request-id": "WESTUS2:20210519T185357Z:ed533611-50b3-4bb5-838a-553455f77ba1" + "x-ms-correlation-request-id": "94f65a0e-76ed-474b-b179-58a71340096f", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "94f65a0e-76ed-474b-b179-58a71340096f", + "x-ms-routing-request-id": "WESTUS2:20210616T001817Z:94f65a0e-76ed-474b-b179-58a71340096f" }, "ResponseBody": [] }, @@ -7322,7 +7462,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b339363f0d8c24a8cc00ac2dfec5ec8c", "x-ms-return-client-request-id": "true" }, @@ -7331,17 +7471,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:57 GMT", + "Date": "Wed, 16 Jun 2021 00:18:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e7d184cc-382e-45c7-878d-0c3b5e39f772", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "e7d184cc-382e-45c7-878d-0c3b5e39f772", - "x-ms-routing-request-id": "WESTUS2:20210519T185358Z:e7d184cc-382e-45c7-878d-0c3b5e39f772" + "x-ms-correlation-request-id": "5c3d346a-c6dd-48fe-b6d5-1565b4c2f705", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "5c3d346a-c6dd-48fe-b6d5-1565b4c2f705", + "x-ms-routing-request-id": "WESTUS2:20210616T001818Z:5c3d346a-c6dd-48fe-b6d5-1565b4c2f705" }, "ResponseBody": [] }, @@ -7350,7 +7490,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "815a22e77b827e9bc79917219b1201cf", "x-ms-return-client-request-id": "true" }, @@ -7359,17 +7499,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:58 GMT", + "Date": "Wed, 16 Jun 2021 00:18:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8075b23e-4375-4afb-9c77-4571773da587", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "8075b23e-4375-4afb-9c77-4571773da587", - "x-ms-routing-request-id": "WESTUS2:20210519T185359Z:8075b23e-4375-4afb-9c77-4571773da587" + "x-ms-correlation-request-id": "327fb818-b1fd-4d9f-ba33-2f3ed7e7d49e", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "327fb818-b1fd-4d9f-ba33-2f3ed7e7d49e", + "x-ms-routing-request-id": "WESTUS2:20210616T001819Z:327fb818-b1fd-4d9f-ba33-2f3ed7e7d49e" }, "ResponseBody": [] }, @@ -7378,7 +7518,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ef622a0ba22811774ad8545e8436915", "x-ms-return-client-request-id": "true" }, @@ -7387,17 +7527,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:53:59 GMT", + "Date": "Wed, 16 Jun 2021 00:18:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "23967fc8-4545-462e-aa93-21155aed489f", - "x-ms-ratelimit-remaining-subscription-reads": "11693", - "x-ms-request-id": "23967fc8-4545-462e-aa93-21155aed489f", - "x-ms-routing-request-id": "WESTUS2:20210519T185400Z:23967fc8-4545-462e-aa93-21155aed489f" + "x-ms-correlation-request-id": "8fb0a5be-ed02-443c-9b37-2d786559b59a", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "8fb0a5be-ed02-443c-9b37-2d786559b59a", + "x-ms-routing-request-id": "WESTUS2:20210616T001820Z:8fb0a5be-ed02-443c-9b37-2d786559b59a" }, "ResponseBody": [] }, @@ -7406,7 +7546,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c27a62592d6cc3ad9bbaecf2f68788ba", "x-ms-return-client-request-id": "true" }, @@ -7415,17 +7555,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:00 GMT", + "Date": "Wed, 16 Jun 2021 00:18:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "85464246-f26d-4072-98fa-7d84c904dd34", - "x-ms-ratelimit-remaining-subscription-reads": "11691", - "x-ms-request-id": "85464246-f26d-4072-98fa-7d84c904dd34", - "x-ms-routing-request-id": "WESTUS2:20210519T185401Z:85464246-f26d-4072-98fa-7d84c904dd34" + "x-ms-correlation-request-id": "7f268679-a9f2-469f-829e-54f0550bce4c", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "7f268679-a9f2-469f-829e-54f0550bce4c", + "x-ms-routing-request-id": "WESTUS2:20210616T001821Z:7f268679-a9f2-469f-829e-54f0550bce4c" }, "ResponseBody": [] }, @@ -7434,7 +7574,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db8dddfe7ece2c690bd90cd5f6559683", "x-ms-return-client-request-id": "true" }, @@ -7443,17 +7583,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:01 GMT", + "Date": "Wed, 16 Jun 2021 00:18:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f93c6bbf-c51d-4191-8e6e-7e38b52c4da6", - "x-ms-ratelimit-remaining-subscription-reads": "11689", - "x-ms-request-id": "f93c6bbf-c51d-4191-8e6e-7e38b52c4da6", - "x-ms-routing-request-id": "WESTUS2:20210519T185402Z:f93c6bbf-c51d-4191-8e6e-7e38b52c4da6" + "x-ms-correlation-request-id": "aca04319-5ac5-467b-a0e2-06db98d07c1e", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "aca04319-5ac5-467b-a0e2-06db98d07c1e", + "x-ms-routing-request-id": "WESTUS2:20210616T001822Z:aca04319-5ac5-467b-a0e2-06db98d07c1e" }, "ResponseBody": [] }, @@ -7462,7 +7602,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "39c7012f3e9872627533d367cd248bed", "x-ms-return-client-request-id": "true" }, @@ -7471,17 +7611,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:02 GMT", + "Date": "Wed, 16 Jun 2021 00:18:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b724fc74-18b4-49b4-a5ac-395a988edafa", - "x-ms-ratelimit-remaining-subscription-reads": "11687", - "x-ms-request-id": "b724fc74-18b4-49b4-a5ac-395a988edafa", - "x-ms-routing-request-id": "WESTUS2:20210519T185403Z:b724fc74-18b4-49b4-a5ac-395a988edafa" + "x-ms-correlation-request-id": "240e74ef-871b-44c1-b8f9-eb1eec47d29d", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "240e74ef-871b-44c1-b8f9-eb1eec47d29d", + "x-ms-routing-request-id": "WESTUS2:20210616T001823Z:240e74ef-871b-44c1-b8f9-eb1eec47d29d" }, "ResponseBody": [] }, @@ -7490,7 +7630,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b47cb248eb6db47f84db69321d7cd46", "x-ms-return-client-request-id": "true" }, @@ -7499,17 +7639,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:03 GMT", + "Date": "Wed, 16 Jun 2021 00:18:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "811603e0-8ea6-4d65-95e6-0e1d40c1be48", - "x-ms-ratelimit-remaining-subscription-reads": "11685", - "x-ms-request-id": "811603e0-8ea6-4d65-95e6-0e1d40c1be48", - "x-ms-routing-request-id": "WESTUS2:20210519T185404Z:811603e0-8ea6-4d65-95e6-0e1d40c1be48" + "x-ms-correlation-request-id": "b530f209-a819-4993-ada8-7b0372a73744", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "b530f209-a819-4993-ada8-7b0372a73744", + "x-ms-routing-request-id": "WESTUS2:20210616T001824Z:b530f209-a819-4993-ada8-7b0372a73744" }, "ResponseBody": [] }, @@ -7518,7 +7658,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4c268244fc0c0217a1a669baa025ee6", "x-ms-return-client-request-id": "true" }, @@ -7527,17 +7667,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:04 GMT", + "Date": "Wed, 16 Jun 2021 00:18:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "795f3bc5-403e-45ff-a62d-1052f71d625e", - "x-ms-ratelimit-remaining-subscription-reads": "11683", - "x-ms-request-id": "795f3bc5-403e-45ff-a62d-1052f71d625e", - "x-ms-routing-request-id": "WESTUS2:20210519T185405Z:795f3bc5-403e-45ff-a62d-1052f71d625e" + "x-ms-correlation-request-id": "af71e3a8-c1ad-46fe-9b4c-da4e99932dbf", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "af71e3a8-c1ad-46fe-9b4c-da4e99932dbf", + "x-ms-routing-request-id": "WESTUS2:20210616T001825Z:af71e3a8-c1ad-46fe-9b4c-da4e99932dbf" }, "ResponseBody": [] }, @@ -7546,7 +7686,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bb11e4e8b0ea1cdbaeb414a87cf519d", "x-ms-return-client-request-id": "true" }, @@ -7555,17 +7695,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:06 GMT", + "Date": "Wed, 16 Jun 2021 00:18:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d8bba296-12e1-4112-b3bc-7f8effb8410e", - "x-ms-ratelimit-remaining-subscription-reads": "11681", - "x-ms-request-id": "d8bba296-12e1-4112-b3bc-7f8effb8410e", - "x-ms-routing-request-id": "WESTUS2:20210519T185406Z:d8bba296-12e1-4112-b3bc-7f8effb8410e" + "x-ms-correlation-request-id": "04d7a425-d225-4d45-bbfd-b8382d8b4daf", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "04d7a425-d225-4d45-bbfd-b8382d8b4daf", + "x-ms-routing-request-id": "WESTUS2:20210616T001826Z:04d7a425-d225-4d45-bbfd-b8382d8b4daf" }, "ResponseBody": [] }, @@ -7574,7 +7714,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65428d669661d52ca986909b27ac30f5", "x-ms-return-client-request-id": "true" }, @@ -7583,17 +7723,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:07 GMT", + "Date": "Wed, 16 Jun 2021 00:18:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "67a120a8-020a-4f1d-9056-3c367942d429", - "x-ms-ratelimit-remaining-subscription-reads": "11679", - "x-ms-request-id": "67a120a8-020a-4f1d-9056-3c367942d429", - "x-ms-routing-request-id": "WESTUS2:20210519T185407Z:67a120a8-020a-4f1d-9056-3c367942d429" + "x-ms-correlation-request-id": "28abd236-9066-4192-a252-3b6b2a2b02b0", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "28abd236-9066-4192-a252-3b6b2a2b02b0", + "x-ms-routing-request-id": "WESTUS2:20210616T001827Z:28abd236-9066-4192-a252-3b6b2a2b02b0" }, "ResponseBody": [] }, @@ -7602,7 +7742,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0245d0eea12699389b203ad50dd738ab", "x-ms-return-client-request-id": "true" }, @@ -7611,17 +7751,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:08 GMT", + "Date": "Wed, 16 Jun 2021 00:18:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "83231dd2-a06f-4826-b4df-39bd819800d6", - "x-ms-ratelimit-remaining-subscription-reads": "11677", - "x-ms-request-id": "83231dd2-a06f-4826-b4df-39bd819800d6", - "x-ms-routing-request-id": "WESTUS2:20210519T185408Z:83231dd2-a06f-4826-b4df-39bd819800d6" + "x-ms-correlation-request-id": "8f6c7863-a93f-4642-bde3-7953d803c027", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "8f6c7863-a93f-4642-bde3-7953d803c027", + "x-ms-routing-request-id": "WESTUS2:20210616T001828Z:8f6c7863-a93f-4642-bde3-7953d803c027" }, "ResponseBody": [] }, @@ -7630,7 +7770,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d34c8c9f9bfb785f2dc8287fa317a0d", "x-ms-return-client-request-id": "true" }, @@ -7639,17 +7779,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:09 GMT", + "Date": "Wed, 16 Jun 2021 00:18:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4a661ba9-3987-4a2c-b40d-2007d5c2b599", - "x-ms-ratelimit-remaining-subscription-reads": "11675", - "x-ms-request-id": "4a661ba9-3987-4a2c-b40d-2007d5c2b599", - "x-ms-routing-request-id": "WESTUS2:20210519T185409Z:4a661ba9-3987-4a2c-b40d-2007d5c2b599" + "x-ms-correlation-request-id": "b25c7d37-96b9-482b-aeed-bd1009b7b987", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "b25c7d37-96b9-482b-aeed-bd1009b7b987", + "x-ms-routing-request-id": "WESTUS2:20210616T001829Z:b25c7d37-96b9-482b-aeed-bd1009b7b987" }, "ResponseBody": [] }, @@ -7658,7 +7798,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b75c4bba4e89c47755a9ca405c57c7d1", "x-ms-return-client-request-id": "true" }, @@ -7667,17 +7807,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:10 GMT", + "Date": "Wed, 16 Jun 2021 00:18:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c01d265b-e0fd-4626-a3de-bfa75badc5b2", - "x-ms-ratelimit-remaining-subscription-reads": "11673", - "x-ms-request-id": "c01d265b-e0fd-4626-a3de-bfa75badc5b2", - "x-ms-routing-request-id": "WESTUS2:20210519T185410Z:c01d265b-e0fd-4626-a3de-bfa75badc5b2" + "x-ms-correlation-request-id": "38f81c06-551f-4f46-9ead-f205c256cee7", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "38f81c06-551f-4f46-9ead-f205c256cee7", + "x-ms-routing-request-id": "WESTUS2:20210616T001830Z:38f81c06-551f-4f46-9ead-f205c256cee7" }, "ResponseBody": [] }, @@ -7686,7 +7826,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ed2e54e1377f4364a8d104a1fb09f69", "x-ms-return-client-request-id": "true" }, @@ -7695,17 +7835,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:11 GMT", + "Date": "Wed, 16 Jun 2021 00:18:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "23200143-ca9a-4396-9314-1d64494b97f8", - "x-ms-ratelimit-remaining-subscription-reads": "11671", - "x-ms-request-id": "23200143-ca9a-4396-9314-1d64494b97f8", - "x-ms-routing-request-id": "WESTUS2:20210519T185411Z:23200143-ca9a-4396-9314-1d64494b97f8" + "x-ms-correlation-request-id": "fa0a8764-9469-4aa3-a60f-43f4476162b4", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "fa0a8764-9469-4aa3-a60f-43f4476162b4", + "x-ms-routing-request-id": "WESTUS2:20210616T001831Z:fa0a8764-9469-4aa3-a60f-43f4476162b4" }, "ResponseBody": [] }, @@ -7714,7 +7854,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c11a2ca6807a7a215170c8162f445a9a", "x-ms-return-client-request-id": "true" }, @@ -7723,17 +7863,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:12 GMT", + "Date": "Wed, 16 Jun 2021 00:18:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dad6464f-4583-40e2-a06a-0e7222ea300e", - "x-ms-ratelimit-remaining-subscription-reads": "11669", - "x-ms-request-id": "dad6464f-4583-40e2-a06a-0e7222ea300e", - "x-ms-routing-request-id": "WESTUS2:20210519T185412Z:dad6464f-4583-40e2-a06a-0e7222ea300e" + "x-ms-correlation-request-id": "dd042463-e2ce-4d35-86f8-aad8453d3250", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "dd042463-e2ce-4d35-86f8-aad8453d3250", + "x-ms-routing-request-id": "WESTUS2:20210616T001832Z:dd042463-e2ce-4d35-86f8-aad8453d3250" }, "ResponseBody": [] }, @@ -7742,7 +7882,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1538b0141b5fa79615676cfb3d2da4a4", "x-ms-return-client-request-id": "true" }, @@ -7751,17 +7891,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:13 GMT", + "Date": "Wed, 16 Jun 2021 00:18:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0c7ca27f-1ec6-4bdc-9be7-db1536362a98", - "x-ms-ratelimit-remaining-subscription-reads": "11667", - "x-ms-request-id": "0c7ca27f-1ec6-4bdc-9be7-db1536362a98", - "x-ms-routing-request-id": "WESTUS2:20210519T185413Z:0c7ca27f-1ec6-4bdc-9be7-db1536362a98" + "x-ms-correlation-request-id": "6f7a6dab-f4b1-4ea5-83d5-f26d130d1be9", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "6f7a6dab-f4b1-4ea5-83d5-f26d130d1be9", + "x-ms-routing-request-id": "WESTUS2:20210616T001833Z:6f7a6dab-f4b1-4ea5-83d5-f26d130d1be9" }, "ResponseBody": [] }, @@ -7770,7 +7910,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "309a600a053dcd56c3570d064a20c506", "x-ms-return-client-request-id": "true" }, @@ -7779,17 +7919,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:14 GMT", + "Date": "Wed, 16 Jun 2021 00:18:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c5baa3c2-3c47-464d-9153-ce08ba895d63", - "x-ms-ratelimit-remaining-subscription-reads": "11665", - "x-ms-request-id": "c5baa3c2-3c47-464d-9153-ce08ba895d63", - "x-ms-routing-request-id": "WESTUS2:20210519T185414Z:c5baa3c2-3c47-464d-9153-ce08ba895d63" + "x-ms-correlation-request-id": "a26949bd-6a8f-46e9-8b22-4d44ea9bf7d5", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "a26949bd-6a8f-46e9-8b22-4d44ea9bf7d5", + "x-ms-routing-request-id": "WESTUS2:20210616T001834Z:a26949bd-6a8f-46e9-8b22-4d44ea9bf7d5" }, "ResponseBody": [] }, @@ -7798,7 +7938,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f35763389788b0a9572ac1314253d24", "x-ms-return-client-request-id": "true" }, @@ -7807,17 +7947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:15 GMT", + "Date": "Wed, 16 Jun 2021 00:18:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "07cb3904-aae5-4667-ab1b-f9436cc34282", - "x-ms-ratelimit-remaining-subscription-reads": "11663", - "x-ms-request-id": "07cb3904-aae5-4667-ab1b-f9436cc34282", - "x-ms-routing-request-id": "WESTUS2:20210519T185415Z:07cb3904-aae5-4667-ab1b-f9436cc34282" + "x-ms-correlation-request-id": "c25b2d20-a0e3-46a4-8764-c5d28edb610d", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "c25b2d20-a0e3-46a4-8764-c5d28edb610d", + "x-ms-routing-request-id": "WESTUS2:20210616T001835Z:c25b2d20-a0e3-46a4-8764-c5d28edb610d" }, "ResponseBody": [] }, @@ -7826,7 +7966,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce0b24cc2aa90e5d596a52070e8f5df5", "x-ms-return-client-request-id": "true" }, @@ -7835,17 +7975,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:16 GMT", + "Date": "Wed, 16 Jun 2021 00:18:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b", - "x-ms-ratelimit-remaining-subscription-reads": "11661", - "x-ms-request-id": "a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b", - "x-ms-routing-request-id": "WESTUS2:20210519T185416Z:a43f9bda-b7b9-4d6c-9e37-ec93fd2b9c6b" + "x-ms-correlation-request-id": "f976446e-3fc0-49ad-af75-9567a3ad88a1", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "f976446e-3fc0-49ad-af75-9567a3ad88a1", + "x-ms-routing-request-id": "WESTUS2:20210616T001836Z:f976446e-3fc0-49ad-af75-9567a3ad88a1" }, "ResponseBody": [] }, @@ -7854,7 +7994,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7c865a235f7802b560e9aca5943b99d", "x-ms-return-client-request-id": "true" }, @@ -7863,17 +8003,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:17 GMT", + "Date": "Wed, 16 Jun 2021 00:18:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dd881706-716b-4d4e-acd2-dab4b15d5969", - "x-ms-ratelimit-remaining-subscription-reads": "11659", - "x-ms-request-id": "dd881706-716b-4d4e-acd2-dab4b15d5969", - "x-ms-routing-request-id": "WESTUS2:20210519T185417Z:dd881706-716b-4d4e-acd2-dab4b15d5969" + "x-ms-correlation-request-id": "6b0c39ec-dd74-44a6-8fcd-68deecbe86e5", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "6b0c39ec-dd74-44a6-8fcd-68deecbe86e5", + "x-ms-routing-request-id": "WESTUS2:20210616T001837Z:6b0c39ec-dd74-44a6-8fcd-68deecbe86e5" }, "ResponseBody": [] }, @@ -7882,7 +8022,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "263ae91af714095c1826150d37027d05", "x-ms-return-client-request-id": "true" }, @@ -7891,17 +8031,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:18 GMT", + "Date": "Wed, 16 Jun 2021 00:18:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "28f0378a-8242-4bfa-b36c-58e315eb7bc3", - "x-ms-ratelimit-remaining-subscription-reads": "11657", - "x-ms-request-id": "28f0378a-8242-4bfa-b36c-58e315eb7bc3", - "x-ms-routing-request-id": "WESTUS2:20210519T185418Z:28f0378a-8242-4bfa-b36c-58e315eb7bc3" + "x-ms-correlation-request-id": "94eb7cc7-bd15-4bda-a947-5bd98336edfc", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "94eb7cc7-bd15-4bda-a947-5bd98336edfc", + "x-ms-routing-request-id": "WESTUS2:20210616T001839Z:94eb7cc7-bd15-4bda-a947-5bd98336edfc" }, "ResponseBody": [] }, @@ -7910,7 +8050,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae71b615755d962cf88a779b8f92b415", "x-ms-return-client-request-id": "true" }, @@ -7919,17 +8059,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:19 GMT", + "Date": "Wed, 16 Jun 2021 00:18:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018", - "x-ms-ratelimit-remaining-subscription-reads": "11655", - "x-ms-request-id": "6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018", - "x-ms-routing-request-id": "WESTUS2:20210519T185419Z:6a4c8f58-9b6a-4e17-b7f9-6f62aeeb6018" + "x-ms-correlation-request-id": "ef1d2c24-a80d-4281-b33e-3c43f622c6fd", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "ef1d2c24-a80d-4281-b33e-3c43f622c6fd", + "x-ms-routing-request-id": "WESTUS2:20210616T001840Z:ef1d2c24-a80d-4281-b33e-3c43f622c6fd" }, "ResponseBody": [] }, @@ -7938,7 +8078,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24ecb4b13655abe008bfaed01f1e4954", "x-ms-return-client-request-id": "true" }, @@ -7947,17 +8087,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:20 GMT", + "Date": "Wed, 16 Jun 2021 00:18:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6c9d1691-aa00-4c65-a179-2e9bd9d8d062", - "x-ms-ratelimit-remaining-subscription-reads": "11653", - "x-ms-request-id": "6c9d1691-aa00-4c65-a179-2e9bd9d8d062", - "x-ms-routing-request-id": "WESTUS2:20210519T185420Z:6c9d1691-aa00-4c65-a179-2e9bd9d8d062" + "x-ms-correlation-request-id": "bd27cb49-3254-43bf-b030-2cd0d62109e5", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "bd27cb49-3254-43bf-b030-2cd0d62109e5", + "x-ms-routing-request-id": "WESTUS2:20210616T001841Z:bd27cb49-3254-43bf-b030-2cd0d62109e5" }, "ResponseBody": [] }, @@ -7966,7 +8106,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b594910bd2a540bca32d897fc17986", "x-ms-return-client-request-id": "true" }, @@ -7975,17 +8115,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:21 GMT", + "Date": "Wed, 16 Jun 2021 00:18:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "42522dcb-67d5-4985-b25b-dfbb4a53dd92", - "x-ms-ratelimit-remaining-subscription-reads": "11651", - "x-ms-request-id": "42522dcb-67d5-4985-b25b-dfbb4a53dd92", - "x-ms-routing-request-id": "WESTUS2:20210519T185422Z:42522dcb-67d5-4985-b25b-dfbb4a53dd92" + "x-ms-correlation-request-id": "eea08895-f73d-4ba2-8cff-2a5156622eff", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "eea08895-f73d-4ba2-8cff-2a5156622eff", + "x-ms-routing-request-id": "WESTUS2:20210616T001842Z:eea08895-f73d-4ba2-8cff-2a5156622eff" }, "ResponseBody": [] }, @@ -7994,7 +8134,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "835cff725815deb0d5c6a59dc65b77da", "x-ms-return-client-request-id": "true" }, @@ -8003,17 +8143,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:22 GMT", + "Date": "Wed, 16 Jun 2021 00:18:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5ed6580d-09aa-4ceb-af08-5650cfb625e4", - "x-ms-ratelimit-remaining-subscription-reads": "11649", - "x-ms-request-id": "5ed6580d-09aa-4ceb-af08-5650cfb625e4", - "x-ms-routing-request-id": "WESTUS2:20210519T185423Z:5ed6580d-09aa-4ceb-af08-5650cfb625e4" + "x-ms-correlation-request-id": "88084fe9-9200-44c8-9f5b-fb52879e4c4b", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "88084fe9-9200-44c8-9f5b-fb52879e4c4b", + "x-ms-routing-request-id": "WESTUS2:20210616T001843Z:88084fe9-9200-44c8-9f5b-fb52879e4c4b" }, "ResponseBody": [] }, @@ -8022,7 +8162,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa09234111dca543734768b208572b47", "x-ms-return-client-request-id": "true" }, @@ -8031,17 +8171,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:23 GMT", + "Date": "Wed, 16 Jun 2021 00:18:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "73798a3c-4b99-4741-bc6a-8cb72f200945", - "x-ms-ratelimit-remaining-subscription-reads": "11647", - "x-ms-request-id": "73798a3c-4b99-4741-bc6a-8cb72f200945", - "x-ms-routing-request-id": "WESTUS2:20210519T185424Z:73798a3c-4b99-4741-bc6a-8cb72f200945" + "x-ms-correlation-request-id": "5e811f7f-823d-46ba-a61d-8a4c4474f386", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "5e811f7f-823d-46ba-a61d-8a4c4474f386", + "x-ms-routing-request-id": "WESTUS2:20210616T001844Z:5e811f7f-823d-46ba-a61d-8a4c4474f386" }, "ResponseBody": [] }, @@ -8050,7 +8190,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f5e2845c6c1393ee4d6cd0c65a2de60", "x-ms-return-client-request-id": "true" }, @@ -8059,17 +8199,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:24 GMT", + "Date": "Wed, 16 Jun 2021 00:18:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "12c61b55-04fe-4dcf-97ee-cba92e16ffbe", - "x-ms-ratelimit-remaining-subscription-reads": "11645", - "x-ms-request-id": "12c61b55-04fe-4dcf-97ee-cba92e16ffbe", - "x-ms-routing-request-id": "WESTUS2:20210519T185425Z:12c61b55-04fe-4dcf-97ee-cba92e16ffbe" + "x-ms-correlation-request-id": "8cb079ba-2a5a-42be-8897-efb90fe26a66", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "8cb079ba-2a5a-42be-8897-efb90fe26a66", + "x-ms-routing-request-id": "WESTUS2:20210616T001845Z:8cb079ba-2a5a-42be-8897-efb90fe26a66" }, "ResponseBody": [] }, @@ -8078,7 +8218,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c48532c7eb860a9bcb60fcdeffed67e", "x-ms-return-client-request-id": "true" }, @@ -8087,17 +8227,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:25 GMT", + "Date": "Wed, 16 Jun 2021 00:18:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1868aabd-b9ed-4289-b7e9-2c1787b1ed91", - "x-ms-ratelimit-remaining-subscription-reads": "11643", - "x-ms-request-id": "1868aabd-b9ed-4289-b7e9-2c1787b1ed91", - "x-ms-routing-request-id": "WESTUS2:20210519T185426Z:1868aabd-b9ed-4289-b7e9-2c1787b1ed91" + "x-ms-correlation-request-id": "82ec9e55-d57d-45c8-90f9-b68653e6b236", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "82ec9e55-d57d-45c8-90f9-b68653e6b236", + "x-ms-routing-request-id": "WESTUS2:20210616T001846Z:82ec9e55-d57d-45c8-90f9-b68653e6b236" }, "ResponseBody": [] }, @@ -8106,7 +8246,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e585e9a57fd7b18e4d0160644373fd1", "x-ms-return-client-request-id": "true" }, @@ -8115,17 +8255,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:26 GMT", + "Date": "Wed, 16 Jun 2021 00:18:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f4c1194d-46b1-465a-803b-cfbcebd135c0", - "x-ms-ratelimit-remaining-subscription-reads": "11641", - "x-ms-request-id": "f4c1194d-46b1-465a-803b-cfbcebd135c0", - "x-ms-routing-request-id": "WESTUS2:20210519T185427Z:f4c1194d-46b1-465a-803b-cfbcebd135c0" + "x-ms-correlation-request-id": "c56c0de6-e1ae-4c5b-b307-8db7e428f3f6", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "c56c0de6-e1ae-4c5b-b307-8db7e428f3f6", + "x-ms-routing-request-id": "WESTUS2:20210616T001847Z:c56c0de6-e1ae-4c5b-b307-8db7e428f3f6" }, "ResponseBody": [] }, @@ -8134,7 +8274,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4860769cf0fc78e7efe630bb77049e6", "x-ms-return-client-request-id": "true" }, @@ -8143,17 +8283,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:27 GMT", + "Date": "Wed, 16 Jun 2021 00:18:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f65aa965-3e3f-4e89-a73a-ceb80184d0bf", - "x-ms-ratelimit-remaining-subscription-reads": "11639", - "x-ms-request-id": "f65aa965-3e3f-4e89-a73a-ceb80184d0bf", - "x-ms-routing-request-id": "WESTUS2:20210519T185428Z:f65aa965-3e3f-4e89-a73a-ceb80184d0bf" + "x-ms-correlation-request-id": "5819ac98-c685-493c-a919-cb8380514aeb", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "5819ac98-c685-493c-a919-cb8380514aeb", + "x-ms-routing-request-id": "WESTUS2:20210616T001848Z:5819ac98-c685-493c-a919-cb8380514aeb" }, "ResponseBody": [] }, @@ -8162,7 +8302,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "07714f00404ad4633bcd78e868a31c85", "x-ms-return-client-request-id": "true" }, @@ -8171,17 +8311,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:28 GMT", + "Date": "Wed, 16 Jun 2021 00:18:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2a693ad5-1277-4610-8470-a82c7f86e070", - "x-ms-ratelimit-remaining-subscription-reads": "11637", - "x-ms-request-id": "2a693ad5-1277-4610-8470-a82c7f86e070", - "x-ms-routing-request-id": "WESTUS2:20210519T185429Z:2a693ad5-1277-4610-8470-a82c7f86e070" + "x-ms-correlation-request-id": "ffa72bc3-7542-48ae-9aa4-3d5583ed9e07", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "ffa72bc3-7542-48ae-9aa4-3d5583ed9e07", + "x-ms-routing-request-id": "WESTUS2:20210616T001849Z:ffa72bc3-7542-48ae-9aa4-3d5583ed9e07" }, "ResponseBody": [] }, @@ -8190,7 +8330,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8643d762178cb6fcf901ffff40cc373", "x-ms-return-client-request-id": "true" }, @@ -8199,17 +8339,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:29 GMT", + "Date": "Wed, 16 Jun 2021 00:18:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "24a096a3-2e97-41e4-8855-83f07c0f93d0", - "x-ms-ratelimit-remaining-subscription-reads": "11635", - "x-ms-request-id": "24a096a3-2e97-41e4-8855-83f07c0f93d0", - "x-ms-routing-request-id": "WESTUS2:20210519T185430Z:24a096a3-2e97-41e4-8855-83f07c0f93d0" + "x-ms-correlation-request-id": "1f52fdce-0dd7-4dd9-8f6a-8eb7d1c7b912", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "1f52fdce-0dd7-4dd9-8f6a-8eb7d1c7b912", + "x-ms-routing-request-id": "WESTUS2:20210616T001850Z:1f52fdce-0dd7-4dd9-8f6a-8eb7d1c7b912" }, "ResponseBody": [] }, @@ -8218,7 +8358,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5062f8738c52886a4b1794157a65edb", "x-ms-return-client-request-id": "true" }, @@ -8227,17 +8367,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:30 GMT", + "Date": "Wed, 16 Jun 2021 00:18:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ec6b68e0-f018-4835-a7b0-d802d7865bcd", - "x-ms-ratelimit-remaining-subscription-reads": "11633", - "x-ms-request-id": "ec6b68e0-f018-4835-a7b0-d802d7865bcd", - "x-ms-routing-request-id": "WESTUS2:20210519T185431Z:ec6b68e0-f018-4835-a7b0-d802d7865bcd" + "x-ms-correlation-request-id": "65ba4d74-ae66-4c65-ab10-33fed10facd6", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "65ba4d74-ae66-4c65-ab10-33fed10facd6", + "x-ms-routing-request-id": "WESTUS2:20210616T001851Z:65ba4d74-ae66-4c65-ab10-33fed10facd6" }, "ResponseBody": [] }, @@ -8246,7 +8386,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7995dee1610bdf6edfa638b92164df2f", "x-ms-return-client-request-id": "true" }, @@ -8255,17 +8395,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:31 GMT", + "Date": "Wed, 16 Jun 2021 00:18:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cdbc8bea-5a6f-4255-a549-e42219f10f09", - "x-ms-ratelimit-remaining-subscription-reads": "11631", - "x-ms-request-id": "cdbc8bea-5a6f-4255-a549-e42219f10f09", - "x-ms-routing-request-id": "WESTUS2:20210519T185432Z:cdbc8bea-5a6f-4255-a549-e42219f10f09" + "x-ms-correlation-request-id": "46b77ab8-3eb8-4b96-ac0a-2ef306b820f9", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "46b77ab8-3eb8-4b96-ac0a-2ef306b820f9", + "x-ms-routing-request-id": "WESTUS2:20210616T001852Z:46b77ab8-3eb8-4b96-ac0a-2ef306b820f9" }, "ResponseBody": [] }, @@ -8274,7 +8414,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38610409279c3ebfb63c43c6a82d7428", "x-ms-return-client-request-id": "true" }, @@ -8283,17 +8423,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:32 GMT", + "Date": "Wed, 16 Jun 2021 00:18:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "244fd1a7-0caf-437a-b9e8-8260ece48380", - "x-ms-ratelimit-remaining-subscription-reads": "11629", - "x-ms-request-id": "244fd1a7-0caf-437a-b9e8-8260ece48380", - "x-ms-routing-request-id": "WESTUS2:20210519T185433Z:244fd1a7-0caf-437a-b9e8-8260ece48380" + "x-ms-correlation-request-id": "98e01fda-1e56-4622-8c42-709dd1a98535", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "98e01fda-1e56-4622-8c42-709dd1a98535", + "x-ms-routing-request-id": "WESTUS2:20210616T001853Z:98e01fda-1e56-4622-8c42-709dd1a98535" }, "ResponseBody": [] }, @@ -8302,7 +8442,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "161d43324a772567c127151f00cd073f", "x-ms-return-client-request-id": "true" }, @@ -8311,17 +8451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:33 GMT", + "Date": "Wed, 16 Jun 2021 00:18:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "65d5aa20-ba03-474e-8eb4-7968c37f413e", - "x-ms-ratelimit-remaining-subscription-reads": "11627", - "x-ms-request-id": "65d5aa20-ba03-474e-8eb4-7968c37f413e", - "x-ms-routing-request-id": "WESTUS2:20210519T185434Z:65d5aa20-ba03-474e-8eb4-7968c37f413e" + "x-ms-correlation-request-id": "314c49a3-d7bf-4529-aab1-dc2204fedc58", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "314c49a3-d7bf-4529-aab1-dc2204fedc58", + "x-ms-routing-request-id": "WESTUS2:20210616T001854Z:314c49a3-d7bf-4529-aab1-dc2204fedc58" }, "ResponseBody": [] }, @@ -8330,7 +8470,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "523849d12645ba3e1e57c2cf1da736b2", "x-ms-return-client-request-id": "true" }, @@ -8339,17 +8479,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:34 GMT", + "Date": "Wed, 16 Jun 2021 00:18:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d6cc24b0-79bc-4e9e-bacf-e921c412f05b", - "x-ms-ratelimit-remaining-subscription-reads": "11625", - "x-ms-request-id": "d6cc24b0-79bc-4e9e-bacf-e921c412f05b", - "x-ms-routing-request-id": "WESTUS2:20210519T185435Z:d6cc24b0-79bc-4e9e-bacf-e921c412f05b" + "x-ms-correlation-request-id": "ddf5271c-2ed2-4039-aec5-2a2b91812703", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "ddf5271c-2ed2-4039-aec5-2a2b91812703", + "x-ms-routing-request-id": "WESTUS2:20210616T001855Z:ddf5271c-2ed2-4039-aec5-2a2b91812703" }, "ResponseBody": [] }, @@ -8358,7 +8498,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dd870f31c947beb79c3b7675119f3de9", "x-ms-return-client-request-id": "true" }, @@ -8367,17 +8507,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:35 GMT", + "Date": "Wed, 16 Jun 2021 00:18:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bb96bed5-c0ef-4560-819e-dcf5dc92922c", - "x-ms-ratelimit-remaining-subscription-reads": "11623", - "x-ms-request-id": "bb96bed5-c0ef-4560-819e-dcf5dc92922c", - "x-ms-routing-request-id": "WESTUS2:20210519T185436Z:bb96bed5-c0ef-4560-819e-dcf5dc92922c" + "x-ms-correlation-request-id": "04f672c6-dbd8-41de-b356-3e17896810bc", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "04f672c6-dbd8-41de-b356-3e17896810bc", + "x-ms-routing-request-id": "WESTUS2:20210616T001856Z:04f672c6-dbd8-41de-b356-3e17896810bc" }, "ResponseBody": [] }, @@ -8386,7 +8526,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ef4043521f50be30463f72088980819", "x-ms-return-client-request-id": "true" }, @@ -8395,17 +8535,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:36 GMT", + "Date": "Wed, 16 Jun 2021 00:18:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b6ed67d6-2337-4d8e-b8e9-19046be6109e", - "x-ms-ratelimit-remaining-subscription-reads": "11621", - "x-ms-request-id": "b6ed67d6-2337-4d8e-b8e9-19046be6109e", - "x-ms-routing-request-id": "WESTUS2:20210519T185437Z:b6ed67d6-2337-4d8e-b8e9-19046be6109e" + "x-ms-correlation-request-id": "598decee-c3e4-40c9-b977-68b5b3dfb4db", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "598decee-c3e4-40c9-b977-68b5b3dfb4db", + "x-ms-routing-request-id": "WESTUS2:20210616T001857Z:598decee-c3e4-40c9-b977-68b5b3dfb4db" }, "ResponseBody": [] }, @@ -8414,7 +8554,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0ed63f0294508f89179b60aafc8a87e", "x-ms-return-client-request-id": "true" }, @@ -8423,17 +8563,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:37 GMT", + "Date": "Wed, 16 Jun 2021 00:18:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6c259b42-0f3b-4f20-8bd9-50085bb6645a", - "x-ms-ratelimit-remaining-subscription-reads": "11619", - "x-ms-request-id": "6c259b42-0f3b-4f20-8bd9-50085bb6645a", - "x-ms-routing-request-id": "WESTUS2:20210519T185438Z:6c259b42-0f3b-4f20-8bd9-50085bb6645a" + "x-ms-correlation-request-id": "b64d0171-bd49-4e5c-b003-c4542f3c7c4b", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "b64d0171-bd49-4e5c-b003-c4542f3c7c4b", + "x-ms-routing-request-id": "WESTUS2:20210616T001858Z:b64d0171-bd49-4e5c-b003-c4542f3c7c4b" }, "ResponseBody": [] }, @@ -8442,7 +8582,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "189ad819d8b310bc2c7bd8e4d1973604", "x-ms-return-client-request-id": "true" }, @@ -8451,17 +8591,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:38 GMT", + "Date": "Wed, 16 Jun 2021 00:18:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1d31e3ad-d068-4f30-8a31-ee87c53b753d", - "x-ms-ratelimit-remaining-subscription-reads": "11617", - "x-ms-request-id": "1d31e3ad-d068-4f30-8a31-ee87c53b753d", - "x-ms-routing-request-id": "WESTUS2:20210519T185439Z:1d31e3ad-d068-4f30-8a31-ee87c53b753d" + "x-ms-correlation-request-id": "c8f38006-4cc4-4429-b74a-d5994a113b87", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "c8f38006-4cc4-4429-b74a-d5994a113b87", + "x-ms-routing-request-id": "WESTUS2:20210616T001859Z:c8f38006-4cc4-4429-b74a-d5994a113b87" }, "ResponseBody": [] }, @@ -8470,7 +8610,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae855c324db10ba40bebcc7b6bd85c3b", "x-ms-return-client-request-id": "true" }, @@ -8479,17 +8619,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:40 GMT", + "Date": "Wed, 16 Jun 2021 00:19:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d658f8e5-2e79-4ed1-ae86-09bb27d64346", - "x-ms-ratelimit-remaining-subscription-reads": "11615", - "x-ms-request-id": "d658f8e5-2e79-4ed1-ae86-09bb27d64346", - "x-ms-routing-request-id": "WESTUS2:20210519T185440Z:d658f8e5-2e79-4ed1-ae86-09bb27d64346" + "x-ms-correlation-request-id": "d88a2930-ba7e-4ac9-93f4-912ade57b811", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "d88a2930-ba7e-4ac9-93f4-912ade57b811", + "x-ms-routing-request-id": "WESTUS2:20210616T001900Z:d88a2930-ba7e-4ac9-93f4-912ade57b811" }, "ResponseBody": [] }, @@ -8498,7 +8638,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af0778baeffd1866a6ddc4c9501437fa", "x-ms-return-client-request-id": "true" }, @@ -8507,17 +8647,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:41 GMT", + "Date": "Wed, 16 Jun 2021 00:19:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "31721718-95b4-4205-b779-63bb40869bfa", - "x-ms-ratelimit-remaining-subscription-reads": "11613", - "x-ms-request-id": "31721718-95b4-4205-b779-63bb40869bfa", - "x-ms-routing-request-id": "WESTUS2:20210519T185441Z:31721718-95b4-4205-b779-63bb40869bfa" + "x-ms-correlation-request-id": "b061949f-0d5e-4df3-9674-dd0596c6ccb2", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "b061949f-0d5e-4df3-9674-dd0596c6ccb2", + "x-ms-routing-request-id": "WESTUS2:20210616T001901Z:b061949f-0d5e-4df3-9674-dd0596c6ccb2" }, "ResponseBody": [] }, @@ -8526,7 +8666,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "52d8b142f943cbcc348e0dc70b41a454", "x-ms-return-client-request-id": "true" }, @@ -8535,17 +8675,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:42 GMT", + "Date": "Wed, 16 Jun 2021 00:19:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "488f404f-a08a-45f0-9481-13fca160f59f", - "x-ms-ratelimit-remaining-subscription-reads": "11611", - "x-ms-request-id": "488f404f-a08a-45f0-9481-13fca160f59f", - "x-ms-routing-request-id": "WESTUS2:20210519T185442Z:488f404f-a08a-45f0-9481-13fca160f59f" + "x-ms-correlation-request-id": "5776dcac-8930-4568-92ff-288e2a8395a5", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "5776dcac-8930-4568-92ff-288e2a8395a5", + "x-ms-routing-request-id": "WESTUS2:20210616T001902Z:5776dcac-8930-4568-92ff-288e2a8395a5" }, "ResponseBody": [] }, @@ -8554,7 +8694,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58299c1f87904206f56d08d488dabaf6", "x-ms-return-client-request-id": "true" }, @@ -8563,17 +8703,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:43 GMT", + "Date": "Wed, 16 Jun 2021 00:19:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e4940d4e-5769-4446-8dbf-1b18d85db93c", - "x-ms-ratelimit-remaining-subscription-reads": "11609", - "x-ms-request-id": "e4940d4e-5769-4446-8dbf-1b18d85db93c", - "x-ms-routing-request-id": "WESTUS2:20210519T185443Z:e4940d4e-5769-4446-8dbf-1b18d85db93c" + "x-ms-correlation-request-id": "d707d2a1-4ccf-4c5f-af72-271f26e40132", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "d707d2a1-4ccf-4c5f-af72-271f26e40132", + "x-ms-routing-request-id": "WESTUS2:20210616T001903Z:d707d2a1-4ccf-4c5f-af72-271f26e40132" }, "ResponseBody": [] }, @@ -8582,7 +8722,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b938d2b309ffc0f8ac3b7b6fe29f0c65", "x-ms-return-client-request-id": "true" }, @@ -8591,17 +8731,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:44 GMT", + "Date": "Wed, 16 Jun 2021 00:19:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c2124ae9-a61b-404d-bd0a-fa7cecae760f", - "x-ms-ratelimit-remaining-subscription-reads": "11607", - "x-ms-request-id": "c2124ae9-a61b-404d-bd0a-fa7cecae760f", - "x-ms-routing-request-id": "WESTUS2:20210519T185444Z:c2124ae9-a61b-404d-bd0a-fa7cecae760f" + "x-ms-correlation-request-id": "5e432b8d-3185-46dd-ba69-304505b6c0ef", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "5e432b8d-3185-46dd-ba69-304505b6c0ef", + "x-ms-routing-request-id": "WESTUS2:20210616T001904Z:5e432b8d-3185-46dd-ba69-304505b6c0ef" }, "ResponseBody": [] }, @@ -8610,7 +8750,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3a97038dfebbb69ab965cd5f1f84359", "x-ms-return-client-request-id": "true" }, @@ -8619,17 +8759,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:45 GMT", + "Date": "Wed, 16 Jun 2021 00:19:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c0f6d600-86eb-4db0-b573-784be34da042", - "x-ms-ratelimit-remaining-subscription-reads": "11605", - "x-ms-request-id": "c0f6d600-86eb-4db0-b573-784be34da042", - "x-ms-routing-request-id": "WESTUS2:20210519T185445Z:c0f6d600-86eb-4db0-b573-784be34da042" + "x-ms-correlation-request-id": "300796c6-5086-46c5-bea8-e7bb0fdcc043", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "300796c6-5086-46c5-bea8-e7bb0fdcc043", + "x-ms-routing-request-id": "WESTUS2:20210616T001905Z:300796c6-5086-46c5-bea8-e7bb0fdcc043" }, "ResponseBody": [] }, @@ -8638,7 +8778,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "381316d4ea081654a468ac550b976056", "x-ms-return-client-request-id": "true" }, @@ -8647,17 +8787,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:46 GMT", + "Date": "Wed, 16 Jun 2021 00:19:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a84984dd-79c2-42fa-8302-3ad618682817", - "x-ms-ratelimit-remaining-subscription-reads": "11603", - "x-ms-request-id": "a84984dd-79c2-42fa-8302-3ad618682817", - "x-ms-routing-request-id": "WESTUS2:20210519T185446Z:a84984dd-79c2-42fa-8302-3ad618682817" + "x-ms-correlation-request-id": "cc8d551c-293c-4e3e-9391-fbad55a0ddc8", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "cc8d551c-293c-4e3e-9391-fbad55a0ddc8", + "x-ms-routing-request-id": "WESTUS2:20210616T001906Z:cc8d551c-293c-4e3e-9391-fbad55a0ddc8" }, "ResponseBody": [] }, @@ -8666,7 +8806,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "189ba2600631d40b697d0e69ac22cfb3", "x-ms-return-client-request-id": "true" }, @@ -8675,17 +8815,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:47 GMT", + "Date": "Wed, 16 Jun 2021 00:19:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6bc6298c-f746-4a8a-a5a9-dac0dff5dec8", - "x-ms-ratelimit-remaining-subscription-reads": "11601", - "x-ms-request-id": "6bc6298c-f746-4a8a-a5a9-dac0dff5dec8", - "x-ms-routing-request-id": "WESTUS2:20210519T185447Z:6bc6298c-f746-4a8a-a5a9-dac0dff5dec8" + "x-ms-correlation-request-id": "e9746274-7763-4757-bb0c-c7238aedff70", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "e9746274-7763-4757-bb0c-c7238aedff70", + "x-ms-routing-request-id": "WESTUS2:20210616T001908Z:e9746274-7763-4757-bb0c-c7238aedff70" }, "ResponseBody": [] }, @@ -8694,7 +8834,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb9b22f8d48b4e5d1c930f823314af14", "x-ms-return-client-request-id": "true" }, @@ -8703,17 +8843,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:48 GMT", + "Date": "Wed, 16 Jun 2021 00:19:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "efac4e2d-1176-4535-b1a7-5a2786300833", - "x-ms-ratelimit-remaining-subscription-reads": "11599", - "x-ms-request-id": "efac4e2d-1176-4535-b1a7-5a2786300833", - "x-ms-routing-request-id": "WESTUS2:20210519T185448Z:efac4e2d-1176-4535-b1a7-5a2786300833" + "x-ms-correlation-request-id": "d9616626-1399-4f0c-9e59-2cc1968d97e7", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "d9616626-1399-4f0c-9e59-2cc1968d97e7", + "x-ms-routing-request-id": "WESTUS2:20210616T001909Z:d9616626-1399-4f0c-9e59-2cc1968d97e7" }, "ResponseBody": [] }, @@ -8722,7 +8862,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e7505352a5dcd280a3fcf8bdcea6981", "x-ms-return-client-request-id": "true" }, @@ -8731,17 +8871,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:49 GMT", + "Date": "Wed, 16 Jun 2021 00:19:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c22d6d81-06dc-4f39-bf74-1100ab9f0aa3", - "x-ms-ratelimit-remaining-subscription-reads": "11597", - "x-ms-request-id": "c22d6d81-06dc-4f39-bf74-1100ab9f0aa3", - "x-ms-routing-request-id": "WESTUS2:20210519T185449Z:c22d6d81-06dc-4f39-bf74-1100ab9f0aa3" + "x-ms-correlation-request-id": "7ebf090a-1b52-4d03-b4d3-36a688207f1b", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "7ebf090a-1b52-4d03-b4d3-36a688207f1b", + "x-ms-routing-request-id": "WESTUS2:20210616T001910Z:7ebf090a-1b52-4d03-b4d3-36a688207f1b" }, "ResponseBody": [] }, @@ -8750,7 +8890,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e95df89894fc8ccb454dfc9df788a054", "x-ms-return-client-request-id": "true" }, @@ -8759,17 +8899,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:50 GMT", + "Date": "Wed, 16 Jun 2021 00:19:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "922175b9-4a33-4514-8a2e-5d6aeddd254b", - "x-ms-ratelimit-remaining-subscription-reads": "11595", - "x-ms-request-id": "922175b9-4a33-4514-8a2e-5d6aeddd254b", - "x-ms-routing-request-id": "WESTUS2:20210519T185450Z:922175b9-4a33-4514-8a2e-5d6aeddd254b" + "x-ms-correlation-request-id": "25385293-1d05-4856-aa04-e5e76f04a2d2", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "25385293-1d05-4856-aa04-e5e76f04a2d2", + "x-ms-routing-request-id": "WESTUS2:20210616T001911Z:25385293-1d05-4856-aa04-e5e76f04a2d2" }, "ResponseBody": [] }, @@ -8778,7 +8918,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a633facd80adcd56facdc04b04d27231", "x-ms-return-client-request-id": "true" }, @@ -8787,17 +8927,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:51 GMT", + "Date": "Wed, 16 Jun 2021 00:19:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f8ebd35e-d67b-480b-8759-f80907a05ea7", - "x-ms-ratelimit-remaining-subscription-reads": "11593", - "x-ms-request-id": "f8ebd35e-d67b-480b-8759-f80907a05ea7", - "x-ms-routing-request-id": "WESTUS2:20210519T185451Z:f8ebd35e-d67b-480b-8759-f80907a05ea7" + "x-ms-correlation-request-id": "1424d8df-a3da-483c-af37-874c949c8a80", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "1424d8df-a3da-483c-af37-874c949c8a80", + "x-ms-routing-request-id": "WESTUS2:20210616T001912Z:1424d8df-a3da-483c-af37-874c949c8a80" }, "ResponseBody": [] }, @@ -8806,7 +8946,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ae98d29c6b7a1183ae8080f2d8ad582", "x-ms-return-client-request-id": "true" }, @@ -8815,17 +8955,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:52 GMT", + "Date": "Wed, 16 Jun 2021 00:19:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2a5b8e9a-ad90-4391-81ec-4135e8d1897e", - "x-ms-ratelimit-remaining-subscription-reads": "11591", - "x-ms-request-id": "2a5b8e9a-ad90-4391-81ec-4135e8d1897e", - "x-ms-routing-request-id": "WESTUS2:20210519T185452Z:2a5b8e9a-ad90-4391-81ec-4135e8d1897e" + "x-ms-correlation-request-id": "e11c6a11-b2b9-4f99-af9e-eb56f2ae04d9", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e11c6a11-b2b9-4f99-af9e-eb56f2ae04d9", + "x-ms-routing-request-id": "WESTUS2:20210616T001913Z:e11c6a11-b2b9-4f99-af9e-eb56f2ae04d9" }, "ResponseBody": [] }, @@ -8834,7 +8974,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1bd7a9ec3b618d4a28fef2ed37f8773", "x-ms-return-client-request-id": "true" }, @@ -8843,17 +8983,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:53 GMT", + "Date": "Wed, 16 Jun 2021 00:19:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "523ef3be-0117-4b71-a7ee-4689e7ca3f72", - "x-ms-ratelimit-remaining-subscription-reads": "11589", - "x-ms-request-id": "523ef3be-0117-4b71-a7ee-4689e7ca3f72", - "x-ms-routing-request-id": "WESTUS2:20210519T185454Z:523ef3be-0117-4b71-a7ee-4689e7ca3f72" + "x-ms-correlation-request-id": "211a92b2-1e1d-447e-b21b-06c14881680e", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "211a92b2-1e1d-447e-b21b-06c14881680e", + "x-ms-routing-request-id": "WESTUS2:20210616T001914Z:211a92b2-1e1d-447e-b21b-06c14881680e" }, "ResponseBody": [] }, @@ -8862,7 +9002,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6973cadb659e069de2926cc57746a06f", "x-ms-return-client-request-id": "true" }, @@ -8871,17 +9011,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:54 GMT", + "Date": "Wed, 16 Jun 2021 00:19:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e640cb7d-9471-43ae-87f6-327f12df68b2", - "x-ms-ratelimit-remaining-subscription-reads": "11587", - "x-ms-request-id": "e640cb7d-9471-43ae-87f6-327f12df68b2", - "x-ms-routing-request-id": "WESTUS2:20210519T185455Z:e640cb7d-9471-43ae-87f6-327f12df68b2" + "x-ms-correlation-request-id": "1b4eb49b-8a05-4c4c-9cc2-063bede4f509", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "1b4eb49b-8a05-4c4c-9cc2-063bede4f509", + "x-ms-routing-request-id": "WESTUS2:20210616T001915Z:1b4eb49b-8a05-4c4c-9cc2-063bede4f509" }, "ResponseBody": [] }, @@ -8890,7 +9030,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aac3ef89014667bb9d19828d6e9cdba", "x-ms-return-client-request-id": "true" }, @@ -8899,17 +9039,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:55 GMT", + "Date": "Wed, 16 Jun 2021 00:19:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "81cdce0e-a069-4a9a-b757-8aa9c9fa1d63", - "x-ms-ratelimit-remaining-subscription-reads": "11585", - "x-ms-request-id": "81cdce0e-a069-4a9a-b757-8aa9c9fa1d63", - "x-ms-routing-request-id": "WESTUS2:20210519T185456Z:81cdce0e-a069-4a9a-b757-8aa9c9fa1d63" + "x-ms-correlation-request-id": "fb3f3315-9fd8-46fa-9818-a01de800b559", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "fb3f3315-9fd8-46fa-9818-a01de800b559", + "x-ms-routing-request-id": "WESTUS2:20210616T001916Z:fb3f3315-9fd8-46fa-9818-a01de800b559" }, "ResponseBody": [] }, @@ -8918,7 +9058,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "623495606c1638e3dcb6fe24560fa05c", "x-ms-return-client-request-id": "true" }, @@ -8927,17 +9067,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:56 GMT", + "Date": "Wed, 16 Jun 2021 00:19:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "95663df9-7170-48fe-9ff0-74ba63bc4e82", - "x-ms-ratelimit-remaining-subscription-reads": "11583", - "x-ms-request-id": "95663df9-7170-48fe-9ff0-74ba63bc4e82", - "x-ms-routing-request-id": "WESTUS2:20210519T185457Z:95663df9-7170-48fe-9ff0-74ba63bc4e82" + "x-ms-correlation-request-id": "668e363f-d3c2-458e-9c07-61c0eb5c45f0", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "668e363f-d3c2-458e-9c07-61c0eb5c45f0", + "x-ms-routing-request-id": "WESTUS2:20210616T001917Z:668e363f-d3c2-458e-9c07-61c0eb5c45f0" }, "ResponseBody": [] }, @@ -8946,7 +9086,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "953580effdd34a5f4f0db0cdcd7530f8", "x-ms-return-client-request-id": "true" }, @@ -8955,17 +9095,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:57 GMT", + "Date": "Wed, 16 Jun 2021 00:19:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "83be2800-199d-49e9-a218-cdc291ccc717", - "x-ms-ratelimit-remaining-subscription-reads": "11581", - "x-ms-request-id": "83be2800-199d-49e9-a218-cdc291ccc717", - "x-ms-routing-request-id": "WESTUS2:20210519T185458Z:83be2800-199d-49e9-a218-cdc291ccc717" + "x-ms-correlation-request-id": "97f06b46-2cdc-4f48-bc4d-6909f6c999b5", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "97f06b46-2cdc-4f48-bc4d-6909f6c999b5", + "x-ms-routing-request-id": "WESTUS2:20210616T001918Z:97f06b46-2cdc-4f48-bc4d-6909f6c999b5" }, "ResponseBody": [] }, @@ -8974,7 +9114,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e264b1c43d118c585b73ad5d91570faa", "x-ms-return-client-request-id": "true" }, @@ -8983,17 +9123,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:58 GMT", + "Date": "Wed, 16 Jun 2021 00:19:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c2b8b2be-c719-4c19-8021-b67e5bc2c94e", - "x-ms-ratelimit-remaining-subscription-reads": "11579", - "x-ms-request-id": "c2b8b2be-c719-4c19-8021-b67e5bc2c94e", - "x-ms-routing-request-id": "WESTUS2:20210519T185459Z:c2b8b2be-c719-4c19-8021-b67e5bc2c94e" + "x-ms-correlation-request-id": "a3a37b4a-939e-43a8-bf88-2f58195dce57", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "a3a37b4a-939e-43a8-bf88-2f58195dce57", + "x-ms-routing-request-id": "WESTUS2:20210616T001919Z:a3a37b4a-939e-43a8-bf88-2f58195dce57" }, "ResponseBody": [] }, @@ -9002,7 +9142,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "56383c3138b463e735ea1309bb166b67", "x-ms-return-client-request-id": "true" }, @@ -9011,17 +9151,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:54:59 GMT", + "Date": "Wed, 16 Jun 2021 00:19:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f08bb644-b4a6-44c4-9080-9e593a3729c2", - "x-ms-ratelimit-remaining-subscription-reads": "11577", - "x-ms-request-id": "f08bb644-b4a6-44c4-9080-9e593a3729c2", - "x-ms-routing-request-id": "WESTUS2:20210519T185500Z:f08bb644-b4a6-44c4-9080-9e593a3729c2" + "x-ms-correlation-request-id": "97e9f7eb-e5dd-448e-b9bf-bad02c475f50", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "97e9f7eb-e5dd-448e-b9bf-bad02c475f50", + "x-ms-routing-request-id": "WESTUS2:20210616T001920Z:97e9f7eb-e5dd-448e-b9bf-bad02c475f50" }, "ResponseBody": [] }, @@ -9030,7 +9170,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a55f0686bdabb14a27a9395f4f01b9f8", "x-ms-return-client-request-id": "true" }, @@ -9039,17 +9179,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:00 GMT", + "Date": "Wed, 16 Jun 2021 00:19:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0aad8b70-e5f0-448c-8e18-8dfd35608446", - "x-ms-ratelimit-remaining-subscription-reads": "11575", - "x-ms-request-id": "0aad8b70-e5f0-448c-8e18-8dfd35608446", - "x-ms-routing-request-id": "WESTUS2:20210519T185501Z:0aad8b70-e5f0-448c-8e18-8dfd35608446" + "x-ms-correlation-request-id": "9e62fa70-9004-42d4-9345-dd935c38202b", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "9e62fa70-9004-42d4-9345-dd935c38202b", + "x-ms-routing-request-id": "WESTUS2:20210616T001921Z:9e62fa70-9004-42d4-9345-dd935c38202b" }, "ResponseBody": [] }, @@ -9058,7 +9198,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "919b06fdd93c8b44ca00ac27294ed045", "x-ms-return-client-request-id": "true" }, @@ -9067,17 +9207,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:01 GMT", + "Date": "Wed, 16 Jun 2021 00:19:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "075b7089-4b52-4700-b73e-5dbed986793f", - "x-ms-ratelimit-remaining-subscription-reads": "11573", - "x-ms-request-id": "075b7089-4b52-4700-b73e-5dbed986793f", - "x-ms-routing-request-id": "WESTUS2:20210519T185502Z:075b7089-4b52-4700-b73e-5dbed986793f" + "x-ms-correlation-request-id": "7cbef424-7a50-4696-aa5e-f8bb7f3f7787", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "7cbef424-7a50-4696-aa5e-f8bb7f3f7787", + "x-ms-routing-request-id": "WESTUS2:20210616T001922Z:7cbef424-7a50-4696-aa5e-f8bb7f3f7787" }, "ResponseBody": [] }, @@ -9086,7 +9226,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8bd746086af774fff1872f0afe881434", "x-ms-return-client-request-id": "true" }, @@ -9095,17 +9235,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:02 GMT", + "Date": "Wed, 16 Jun 2021 00:19:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "63bbe605-9ad9-4518-8611-64da328198c7", - "x-ms-ratelimit-remaining-subscription-reads": "11571", - "x-ms-request-id": "63bbe605-9ad9-4518-8611-64da328198c7", - "x-ms-routing-request-id": "WESTUS2:20210519T185503Z:63bbe605-9ad9-4518-8611-64da328198c7" + "x-ms-correlation-request-id": "bdfb2445-eb60-4b90-a869-28f3317ece43", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "bdfb2445-eb60-4b90-a869-28f3317ece43", + "x-ms-routing-request-id": "WESTUS2:20210616T001923Z:bdfb2445-eb60-4b90-a869-28f3317ece43" }, "ResponseBody": [] }, @@ -9114,7 +9254,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b50c1b31d97aad2ac1d3dbaa102388d8", "x-ms-return-client-request-id": "true" }, @@ -9123,17 +9263,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:03 GMT", + "Date": "Wed, 16 Jun 2021 00:19:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d09a7358-9a41-4261-aa1c-508d47416aaa", - "x-ms-ratelimit-remaining-subscription-reads": "11569", - "x-ms-request-id": "d09a7358-9a41-4261-aa1c-508d47416aaa", - "x-ms-routing-request-id": "WESTUS2:20210519T185504Z:d09a7358-9a41-4261-aa1c-508d47416aaa" + "x-ms-correlation-request-id": "737cb456-f1f6-4330-a508-6f279202e0af", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "737cb456-f1f6-4330-a508-6f279202e0af", + "x-ms-routing-request-id": "WESTUS2:20210616T001924Z:737cb456-f1f6-4330-a508-6f279202e0af" }, "ResponseBody": [] }, @@ -9142,7 +9282,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0856f4d92d2a92000727a0b5a93a8d41", "x-ms-return-client-request-id": "true" }, @@ -9151,17 +9291,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:04 GMT", + "Date": "Wed, 16 Jun 2021 00:19:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f72b074c-a7a8-4639-8551-e0ce72211e86", - "x-ms-ratelimit-remaining-subscription-reads": "11567", - "x-ms-request-id": "f72b074c-a7a8-4639-8551-e0ce72211e86", - "x-ms-routing-request-id": "WESTUS2:20210519T185505Z:f72b074c-a7a8-4639-8551-e0ce72211e86" + "x-ms-correlation-request-id": "4eaa9deb-92c0-46a0-9bd0-611887537abe", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "4eaa9deb-92c0-46a0-9bd0-611887537abe", + "x-ms-routing-request-id": "WESTUS2:20210616T001925Z:4eaa9deb-92c0-46a0-9bd0-611887537abe" }, "ResponseBody": [] }, @@ -9170,7 +9310,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ef678ec1b422eca1c29c9238f5463ce", "x-ms-return-client-request-id": "true" }, @@ -9179,17 +9319,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:05 GMT", + "Date": "Wed, 16 Jun 2021 00:19:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e8e77717-d8f1-4ba1-80df-ca170188a762", - "x-ms-ratelimit-remaining-subscription-reads": "11565", - "x-ms-request-id": "e8e77717-d8f1-4ba1-80df-ca170188a762", - "x-ms-routing-request-id": "WESTUS2:20210519T185506Z:e8e77717-d8f1-4ba1-80df-ca170188a762" + "x-ms-correlation-request-id": "a02b0254-220c-4e16-b62a-4cab3aa6119b", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "a02b0254-220c-4e16-b62a-4cab3aa6119b", + "x-ms-routing-request-id": "WESTUS2:20210616T001926Z:a02b0254-220c-4e16-b62a-4cab3aa6119b" }, "ResponseBody": [] }, @@ -9198,7 +9338,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "093156fe0b3103091a7aae5239740387", "x-ms-return-client-request-id": "true" }, @@ -9207,17 +9347,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:06 GMT", + "Date": "Wed, 16 Jun 2021 00:19:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4", - "x-ms-ratelimit-remaining-subscription-reads": "11563", - "x-ms-request-id": "9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185507Z:9d6a302d-c6a8-4b8d-8d9c-e15594e1e8b4" + "x-ms-correlation-request-id": "b1cd2f2d-49fc-4ee2-919a-b115884b34f5", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "b1cd2f2d-49fc-4ee2-919a-b115884b34f5", + "x-ms-routing-request-id": "WESTUS2:20210616T001927Z:b1cd2f2d-49fc-4ee2-919a-b115884b34f5" }, "ResponseBody": [] }, @@ -9226,7 +9366,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97bd9946792dbe962a27ec0064dc03b2", "x-ms-return-client-request-id": "true" }, @@ -9235,17 +9375,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:07 GMT", + "Date": "Wed, 16 Jun 2021 00:19:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "74feb5b0-6e51-4ee4-8ba4-e3aade813205", - "x-ms-ratelimit-remaining-subscription-reads": "11561", - "x-ms-request-id": "74feb5b0-6e51-4ee4-8ba4-e3aade813205", - "x-ms-routing-request-id": "WESTUS2:20210519T185508Z:74feb5b0-6e51-4ee4-8ba4-e3aade813205" + "x-ms-correlation-request-id": "289fe1cc-27f9-42ca-9e6f-fd9d026bf35f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "289fe1cc-27f9-42ca-9e6f-fd9d026bf35f", + "x-ms-routing-request-id": "WESTUS2:20210616T001928Z:289fe1cc-27f9-42ca-9e6f-fd9d026bf35f" }, "ResponseBody": [] }, @@ -9254,7 +9394,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b6d2c48309e1106ff2f4c86d77f5a7", "x-ms-return-client-request-id": "true" }, @@ -9263,17 +9403,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:08 GMT", + "Date": "Wed, 16 Jun 2021 00:19:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ebb756e0-172f-418f-9a28-8018f9db921e", - "x-ms-ratelimit-remaining-subscription-reads": "11559", - "x-ms-request-id": "ebb756e0-172f-418f-9a28-8018f9db921e", - "x-ms-routing-request-id": "WESTUS2:20210519T185509Z:ebb756e0-172f-418f-9a28-8018f9db921e" + "x-ms-correlation-request-id": "f477a7fe-7992-4398-aa42-43197a9bbab4", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "f477a7fe-7992-4398-aa42-43197a9bbab4", + "x-ms-routing-request-id": "WESTUS2:20210616T001929Z:f477a7fe-7992-4398-aa42-43197a9bbab4" }, "ResponseBody": [] }, @@ -9282,7 +9422,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f5dd4126cb9685a0bf72df0a1f089e3d", "x-ms-return-client-request-id": "true" }, @@ -9291,17 +9431,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:09 GMT", + "Date": "Wed, 16 Jun 2021 00:19:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "90e5221d-73a8-4cb5-a2ae-04b09250a48d", - "x-ms-ratelimit-remaining-subscription-reads": "11557", - "x-ms-request-id": "90e5221d-73a8-4cb5-a2ae-04b09250a48d", - "x-ms-routing-request-id": "WESTUS2:20210519T185510Z:90e5221d-73a8-4cb5-a2ae-04b09250a48d" + "x-ms-correlation-request-id": "ff82716a-93b2-487d-bb5e-8b408dd60537", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "ff82716a-93b2-487d-bb5e-8b408dd60537", + "x-ms-routing-request-id": "WESTUS2:20210616T001930Z:ff82716a-93b2-487d-bb5e-8b408dd60537" }, "ResponseBody": [] }, @@ -9310,7 +9450,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "678efb76b0bdc37e89dc283a85ce50b2", "x-ms-return-client-request-id": "true" }, @@ -9319,17 +9459,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:10 GMT", + "Date": "Wed, 16 Jun 2021 00:19:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b0ec44f5-a1e4-4b06-ade2-808177b74da1", - "x-ms-ratelimit-remaining-subscription-reads": "11555", - "x-ms-request-id": "b0ec44f5-a1e4-4b06-ade2-808177b74da1", - "x-ms-routing-request-id": "WESTUS2:20210519T185511Z:b0ec44f5-a1e4-4b06-ade2-808177b74da1" + "x-ms-correlation-request-id": "21561da7-5b60-481d-9ddc-401d2aafeddd", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "21561da7-5b60-481d-9ddc-401d2aafeddd", + "x-ms-routing-request-id": "WESTUS2:20210616T001931Z:21561da7-5b60-481d-9ddc-401d2aafeddd" }, "ResponseBody": [] }, @@ -9338,7 +9478,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23da44320dfff81b31319396a305c266", "x-ms-return-client-request-id": "true" }, @@ -9347,17 +9487,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:11 GMT", + "Date": "Wed, 16 Jun 2021 00:19:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4637ea85-3635-4130-ab3b-193b67cd812e", - "x-ms-ratelimit-remaining-subscription-reads": "11553", - "x-ms-request-id": "4637ea85-3635-4130-ab3b-193b67cd812e", - "x-ms-routing-request-id": "WESTUS2:20210519T185512Z:4637ea85-3635-4130-ab3b-193b67cd812e" + "x-ms-correlation-request-id": "857125f1-4940-4982-ab29-09f81a2847da", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "857125f1-4940-4982-ab29-09f81a2847da", + "x-ms-routing-request-id": "WESTUS2:20210616T001932Z:857125f1-4940-4982-ab29-09f81a2847da" }, "ResponseBody": [] }, @@ -9366,7 +9506,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7151b6548ee976eac21a6cbaa366fff1", "x-ms-return-client-request-id": "true" }, @@ -9375,17 +9515,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:12 GMT", + "Date": "Wed, 16 Jun 2021 00:19:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "01524389-0966-4660-94de-39f070f0406f", - "x-ms-ratelimit-remaining-subscription-reads": "11551", - "x-ms-request-id": "01524389-0966-4660-94de-39f070f0406f", - "x-ms-routing-request-id": "WESTUS2:20210519T185513Z:01524389-0966-4660-94de-39f070f0406f" + "x-ms-correlation-request-id": "de754871-25ed-4d62-8f8b-0f350fe2239a", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "de754871-25ed-4d62-8f8b-0f350fe2239a", + "x-ms-routing-request-id": "WESTUS2:20210616T001933Z:de754871-25ed-4d62-8f8b-0f350fe2239a" }, "ResponseBody": [] }, @@ -9394,7 +9534,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dad72d227b2e693edf96368c1ce81f83", "x-ms-return-client-request-id": "true" }, @@ -9403,17 +9543,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:13 GMT", + "Date": "Wed, 16 Jun 2021 00:19:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e47f47dd-4ca0-4f8e-9f58-ae14926b97a3", - "x-ms-ratelimit-remaining-subscription-reads": "11549", - "x-ms-request-id": "e47f47dd-4ca0-4f8e-9f58-ae14926b97a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185514Z:e47f47dd-4ca0-4f8e-9f58-ae14926b97a3" + "x-ms-correlation-request-id": "219382c3-e449-4e5e-a9fd-f0742c591003", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "219382c3-e449-4e5e-a9fd-f0742c591003", + "x-ms-routing-request-id": "WESTUS2:20210616T001934Z:219382c3-e449-4e5e-a9fd-f0742c591003" }, "ResponseBody": [] }, @@ -9422,7 +9562,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cee5c21adf7da4c95a6460e4a06154ca", "x-ms-return-client-request-id": "true" }, @@ -9431,17 +9571,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:14 GMT", + "Date": "Wed, 16 Jun 2021 00:19:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1c06323c-43ef-4fb9-aabb-f28aa2b446c9", - "x-ms-ratelimit-remaining-subscription-reads": "11547", - "x-ms-request-id": "1c06323c-43ef-4fb9-aabb-f28aa2b446c9", - "x-ms-routing-request-id": "WESTUS2:20210519T185515Z:1c06323c-43ef-4fb9-aabb-f28aa2b446c9" + "x-ms-correlation-request-id": "266a6420-f4ae-4675-b1a2-35b088d6a971", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "266a6420-f4ae-4675-b1a2-35b088d6a971", + "x-ms-routing-request-id": "WESTUS2:20210616T001935Z:266a6420-f4ae-4675-b1a2-35b088d6a971" }, "ResponseBody": [] }, @@ -9450,7 +9590,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7674a231e72ed93777e79252575d59da", "x-ms-return-client-request-id": "true" }, @@ -9459,17 +9599,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:15 GMT", + "Date": "Wed, 16 Jun 2021 00:19:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "aa530add-6150-4253-a036-2386d0baeb1b", - "x-ms-ratelimit-remaining-subscription-reads": "11545", - "x-ms-request-id": "aa530add-6150-4253-a036-2386d0baeb1b", - "x-ms-routing-request-id": "WESTUS2:20210519T185516Z:aa530add-6150-4253-a036-2386d0baeb1b" + "x-ms-correlation-request-id": "aa6c614f-4126-47ea-9be5-18097416e62a", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "aa6c614f-4126-47ea-9be5-18097416e62a", + "x-ms-routing-request-id": "WESTUS2:20210616T001936Z:aa6c614f-4126-47ea-9be5-18097416e62a" }, "ResponseBody": [] }, @@ -9478,7 +9618,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1a0e8fb31814274643380c91a5ac87e", "x-ms-return-client-request-id": "true" }, @@ -9487,17 +9627,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:16 GMT", + "Date": "Wed, 16 Jun 2021 00:19:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9fe4b379-e370-4f97-be6d-ca546a15b861", - "x-ms-ratelimit-remaining-subscription-reads": "11543", - "x-ms-request-id": "9fe4b379-e370-4f97-be6d-ca546a15b861", - "x-ms-routing-request-id": "WESTUS2:20210519T185517Z:9fe4b379-e370-4f97-be6d-ca546a15b861" + "x-ms-correlation-request-id": "0d6517a6-8c74-4b11-b0e2-63c85e5d7407", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "0d6517a6-8c74-4b11-b0e2-63c85e5d7407", + "x-ms-routing-request-id": "WESTUS2:20210616T001937Z:0d6517a6-8c74-4b11-b0e2-63c85e5d7407" }, "ResponseBody": [] }, @@ -9506,7 +9646,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a5a6c41a97432558a0c57954c764cfc", "x-ms-return-client-request-id": "true" }, @@ -9515,17 +9655,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:18 GMT", + "Date": "Wed, 16 Jun 2021 00:19:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "221179ac-5394-417d-ad6f-dc17c329019e", - "x-ms-ratelimit-remaining-subscription-reads": "11541", - "x-ms-request-id": "221179ac-5394-417d-ad6f-dc17c329019e", - "x-ms-routing-request-id": "WESTUS2:20210519T185518Z:221179ac-5394-417d-ad6f-dc17c329019e" + "x-ms-correlation-request-id": "9acfb5f1-4f57-4659-943c-628032892295", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "9acfb5f1-4f57-4659-943c-628032892295", + "x-ms-routing-request-id": "WESTUS2:20210616T001938Z:9acfb5f1-4f57-4659-943c-628032892295" }, "ResponseBody": [] }, @@ -9534,7 +9674,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7e9860b73c000492d3111fa676ebe1d", "x-ms-return-client-request-id": "true" }, @@ -9543,17 +9683,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:19 GMT", + "Date": "Wed, 16 Jun 2021 00:19:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "17b6b18c-6ce7-4333-94ee-835dedff4541", - "x-ms-ratelimit-remaining-subscription-reads": "11539", - "x-ms-request-id": "17b6b18c-6ce7-4333-94ee-835dedff4541", - "x-ms-routing-request-id": "WESTUS2:20210519T185519Z:17b6b18c-6ce7-4333-94ee-835dedff4541" + "x-ms-correlation-request-id": "b1d0201f-f1b5-450a-b961-acfcf2d5eebb", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "b1d0201f-f1b5-450a-b961-acfcf2d5eebb", + "x-ms-routing-request-id": "WESTUS2:20210616T001939Z:b1d0201f-f1b5-450a-b961-acfcf2d5eebb" }, "ResponseBody": [] }, @@ -9562,7 +9702,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eb11131ede035165936d5674dadef5ed", "x-ms-return-client-request-id": "true" }, @@ -9571,17 +9711,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:20 GMT", + "Date": "Wed, 16 Jun 2021 00:19:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52", - "x-ms-ratelimit-remaining-subscription-reads": "11537", - "x-ms-request-id": "22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52", - "x-ms-routing-request-id": "WESTUS2:20210519T185520Z:22cc7d36-3d9d-4540-a70c-e1f2f1b1dc52" + "x-ms-correlation-request-id": "5a8feecd-9c0c-497c-8230-39a71f8afa28", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "5a8feecd-9c0c-497c-8230-39a71f8afa28", + "x-ms-routing-request-id": "WESTUS2:20210616T001941Z:5a8feecd-9c0c-497c-8230-39a71f8afa28" }, "ResponseBody": [] }, @@ -9590,7 +9730,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94be83e71070cdbe225a4c43975acb1c", "x-ms-return-client-request-id": "true" }, @@ -9599,17 +9739,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:21 GMT", + "Date": "Wed, 16 Jun 2021 00:19:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dc219914-0970-45f1-831a-c7bba9604063", - "x-ms-ratelimit-remaining-subscription-reads": "11535", - "x-ms-request-id": "dc219914-0970-45f1-831a-c7bba9604063", - "x-ms-routing-request-id": "WESTUS2:20210519T185521Z:dc219914-0970-45f1-831a-c7bba9604063" + "x-ms-correlation-request-id": "2463c129-9c49-4b41-b4eb-8da8d7af1ca9", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "2463c129-9c49-4b41-b4eb-8da8d7af1ca9", + "x-ms-routing-request-id": "WESTUS2:20210616T001942Z:2463c129-9c49-4b41-b4eb-8da8d7af1ca9" }, "ResponseBody": [] }, @@ -9618,7 +9758,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3976394d60652cf9219724521dd4264f", "x-ms-return-client-request-id": "true" }, @@ -9627,17 +9767,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:22 GMT", + "Date": "Wed, 16 Jun 2021 00:19:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a72aab61-bfdd-4ff6-a077-18ae7fa3f08c", - "x-ms-ratelimit-remaining-subscription-reads": "11533", - "x-ms-request-id": "a72aab61-bfdd-4ff6-a077-18ae7fa3f08c", - "x-ms-routing-request-id": "WESTUS2:20210519T185522Z:a72aab61-bfdd-4ff6-a077-18ae7fa3f08c" + "x-ms-correlation-request-id": "f465699d-c485-44af-a50a-63cc11c5d075", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "f465699d-c485-44af-a50a-63cc11c5d075", + "x-ms-routing-request-id": "WESTUS2:20210616T001943Z:f465699d-c485-44af-a50a-63cc11c5d075" }, "ResponseBody": [] }, @@ -9646,7 +9786,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e313233b2aaf0ead5543c8a89121b938", "x-ms-return-client-request-id": "true" }, @@ -9655,17 +9795,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:23 GMT", + "Date": "Wed, 16 Jun 2021 00:19:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e1cd11be-1ec2-42a6-9d45-43ce4b0f4181", - "x-ms-ratelimit-remaining-subscription-reads": "11531", - "x-ms-request-id": "e1cd11be-1ec2-42a6-9d45-43ce4b0f4181", - "x-ms-routing-request-id": "WESTUS2:20210519T185523Z:e1cd11be-1ec2-42a6-9d45-43ce4b0f4181" + "x-ms-correlation-request-id": "06d72c71-c9da-4af8-b404-0b2b5a4e2cdf", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "06d72c71-c9da-4af8-b404-0b2b5a4e2cdf", + "x-ms-routing-request-id": "WESTUS2:20210616T001944Z:06d72c71-c9da-4af8-b404-0b2b5a4e2cdf" }, "ResponseBody": [] }, @@ -9674,7 +9814,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0263aa2bc6786888a9272d8ec6bb04e", "x-ms-return-client-request-id": "true" }, @@ -9683,17 +9823,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:24 GMT", + "Date": "Wed, 16 Jun 2021 00:19:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "05402b03-b570-4193-9412-0ee6df8fee2a", - "x-ms-ratelimit-remaining-subscription-reads": "11529", - "x-ms-request-id": "05402b03-b570-4193-9412-0ee6df8fee2a", - "x-ms-routing-request-id": "WESTUS2:20210519T185524Z:05402b03-b570-4193-9412-0ee6df8fee2a" + "x-ms-correlation-request-id": "dcc881ae-feae-4756-b578-72b058ec5bae", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "dcc881ae-feae-4756-b578-72b058ec5bae", + "x-ms-routing-request-id": "WESTUS2:20210616T001945Z:dcc881ae-feae-4756-b578-72b058ec5bae" }, "ResponseBody": [] }, @@ -9702,7 +9842,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7408fd33e847236d8c68e32298509aff", "x-ms-return-client-request-id": "true" }, @@ -9711,17 +9851,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:25 GMT", + "Date": "Wed, 16 Jun 2021 00:19:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "950e486e-5bb0-44ba-bd0f-cc051302f80d", - "x-ms-ratelimit-remaining-subscription-reads": "11527", - "x-ms-request-id": "950e486e-5bb0-44ba-bd0f-cc051302f80d", - "x-ms-routing-request-id": "WESTUS2:20210519T185526Z:950e486e-5bb0-44ba-bd0f-cc051302f80d" + "x-ms-correlation-request-id": "c9bf95a6-2574-47b3-94ac-045bad0c96a0", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "c9bf95a6-2574-47b3-94ac-045bad0c96a0", + "x-ms-routing-request-id": "WESTUS2:20210616T001946Z:c9bf95a6-2574-47b3-94ac-045bad0c96a0" }, "ResponseBody": [] }, @@ -9730,7 +9870,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2b0ebdd85ad7ee79b8d581db7d421ea", "x-ms-return-client-request-id": "true" }, @@ -9739,17 +9879,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:26 GMT", + "Date": "Wed, 16 Jun 2021 00:19:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f23bbb66-65d3-4a15-a439-5a7b4c3244c3", - "x-ms-ratelimit-remaining-subscription-reads": "11525", - "x-ms-request-id": "f23bbb66-65d3-4a15-a439-5a7b4c3244c3", - "x-ms-routing-request-id": "WESTUS2:20210519T185527Z:f23bbb66-65d3-4a15-a439-5a7b4c3244c3" + "x-ms-correlation-request-id": "f5b7f747-89bb-4954-8600-7ed2cef1d18f", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "f5b7f747-89bb-4954-8600-7ed2cef1d18f", + "x-ms-routing-request-id": "WESTUS2:20210616T001947Z:f5b7f747-89bb-4954-8600-7ed2cef1d18f" }, "ResponseBody": [] }, @@ -9758,7 +9898,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94757a924519b9f1cd0314ffd866ed3a", "x-ms-return-client-request-id": "true" }, @@ -9767,17 +9907,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:27 GMT", + "Date": "Wed, 16 Jun 2021 00:19:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d9227c48-66f2-4355-ad59-75e7a24f9573", - "x-ms-ratelimit-remaining-subscription-reads": "11523", - "x-ms-request-id": "d9227c48-66f2-4355-ad59-75e7a24f9573", - "x-ms-routing-request-id": "WESTUS2:20210519T185528Z:d9227c48-66f2-4355-ad59-75e7a24f9573" + "x-ms-correlation-request-id": "f5e1d999-d9e0-410b-ac5a-3391af77abc1", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "f5e1d999-d9e0-410b-ac5a-3391af77abc1", + "x-ms-routing-request-id": "WESTUS2:20210616T001948Z:f5e1d999-d9e0-410b-ac5a-3391af77abc1" }, "ResponseBody": [] }, @@ -9786,7 +9926,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00fb73f7cebaaea01589d8ba904f6bb7", "x-ms-return-client-request-id": "true" }, @@ -9795,17 +9935,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:28 GMT", + "Date": "Wed, 16 Jun 2021 00:19:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "25d55d76-7491-4592-8eee-ad189d9fd6f6", - "x-ms-ratelimit-remaining-subscription-reads": "11521", - "x-ms-request-id": "25d55d76-7491-4592-8eee-ad189d9fd6f6", - "x-ms-routing-request-id": "WESTUS2:20210519T185529Z:25d55d76-7491-4592-8eee-ad189d9fd6f6" + "x-ms-correlation-request-id": "3c4e6311-62e1-415d-9d87-b5937d38803f", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "3c4e6311-62e1-415d-9d87-b5937d38803f", + "x-ms-routing-request-id": "WESTUS2:20210616T001949Z:3c4e6311-62e1-415d-9d87-b5937d38803f" }, "ResponseBody": [] }, @@ -9814,7 +9954,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d8ff94606db97e5faf614a970e8a635", "x-ms-return-client-request-id": "true" }, @@ -9823,17 +9963,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:30 GMT", + "Date": "Wed, 16 Jun 2021 00:19:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8790047f-1747-4dc8-ac28-fd3b7568f8ed", - "x-ms-ratelimit-remaining-subscription-reads": "11519", - "x-ms-request-id": "8790047f-1747-4dc8-ac28-fd3b7568f8ed", - "x-ms-routing-request-id": "WESTUS2:20210519T185530Z:8790047f-1747-4dc8-ac28-fd3b7568f8ed" + "x-ms-correlation-request-id": "db3ee1c4-7044-465f-af72-50fe7779b934", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "db3ee1c4-7044-465f-af72-50fe7779b934", + "x-ms-routing-request-id": "WESTUS2:20210616T001950Z:db3ee1c4-7044-465f-af72-50fe7779b934" }, "ResponseBody": [] }, @@ -9842,7 +9982,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44251e9f20d9c42fd9c77f906d37297d", "x-ms-return-client-request-id": "true" }, @@ -9851,17 +9991,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:31 GMT", + "Date": "Wed, 16 Jun 2021 00:19:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "00b4f64e-025a-4f1e-b765-79249ed5d09f", - "x-ms-ratelimit-remaining-subscription-reads": "11517", - "x-ms-request-id": "00b4f64e-025a-4f1e-b765-79249ed5d09f", - "x-ms-routing-request-id": "WESTUS2:20210519T185531Z:00b4f64e-025a-4f1e-b765-79249ed5d09f" + "x-ms-correlation-request-id": "5388e930-11da-4afb-a723-1c0548e2b0ad", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "5388e930-11da-4afb-a723-1c0548e2b0ad", + "x-ms-routing-request-id": "WESTUS2:20210616T001951Z:5388e930-11da-4afb-a723-1c0548e2b0ad" }, "ResponseBody": [] }, @@ -9870,7 +10010,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "deb85c98cfd6f15f8e6306c4b9f63d2d", "x-ms-return-client-request-id": "true" }, @@ -9879,17 +10019,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:32 GMT", + "Date": "Wed, 16 Jun 2021 00:19:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc", - "x-ms-ratelimit-remaining-subscription-reads": "11515", - "x-ms-request-id": "bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc", - "x-ms-routing-request-id": "WESTUS2:20210519T185532Z:bd50bcb8-2fb4-4265-a8a8-7464fd18c8cc" + "x-ms-correlation-request-id": "36b7b25c-405e-45bc-b137-5d8939642eb5", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "36b7b25c-405e-45bc-b137-5d8939642eb5", + "x-ms-routing-request-id": "WESTUS2:20210616T001952Z:36b7b25c-405e-45bc-b137-5d8939642eb5" }, "ResponseBody": [] }, @@ -9898,7 +10038,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "711aa3e3272a26decaca441487552ac3", "x-ms-return-client-request-id": "true" }, @@ -9907,17 +10047,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:33 GMT", + "Date": "Wed, 16 Jun 2021 00:19:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a147c5e6-36bc-475a-9513-58d7656e3a49", - "x-ms-ratelimit-remaining-subscription-reads": "11513", - "x-ms-request-id": "a147c5e6-36bc-475a-9513-58d7656e3a49", - "x-ms-routing-request-id": "WESTUS2:20210519T185533Z:a147c5e6-36bc-475a-9513-58d7656e3a49" + "x-ms-correlation-request-id": "645a4160-6945-4be7-a4f5-41373487f690", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "645a4160-6945-4be7-a4f5-41373487f690", + "x-ms-routing-request-id": "WESTUS2:20210616T001953Z:645a4160-6945-4be7-a4f5-41373487f690" }, "ResponseBody": [] }, @@ -9926,7 +10066,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "131197cdc730cf5ebf34b6751a6b0be3", "x-ms-return-client-request-id": "true" }, @@ -9935,17 +10075,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:34 GMT", + "Date": "Wed, 16 Jun 2021 00:19:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "75eb5cf6-897f-4128-95e2-f4766d6d8c68", - "x-ms-ratelimit-remaining-subscription-reads": "11511", - "x-ms-request-id": "75eb5cf6-897f-4128-95e2-f4766d6d8c68", - "x-ms-routing-request-id": "WESTUS2:20210519T185534Z:75eb5cf6-897f-4128-95e2-f4766d6d8c68" + "x-ms-correlation-request-id": "7efe2136-8292-4f69-955e-71ecb712fc4c", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "7efe2136-8292-4f69-955e-71ecb712fc4c", + "x-ms-routing-request-id": "WESTUS2:20210616T001954Z:7efe2136-8292-4f69-955e-71ecb712fc4c" }, "ResponseBody": [] }, @@ -9954,7 +10094,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9ac5189b71c71537e91140c8b4b6a38", "x-ms-return-client-request-id": "true" }, @@ -9963,17 +10103,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:35 GMT", + "Date": "Wed, 16 Jun 2021 00:19:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4df00ec0-cae2-4dde-be39-c8326dbd7bb3", - "x-ms-ratelimit-remaining-subscription-reads": "11509", - "x-ms-request-id": "4df00ec0-cae2-4dde-be39-c8326dbd7bb3", - "x-ms-routing-request-id": "WESTUS2:20210519T185535Z:4df00ec0-cae2-4dde-be39-c8326dbd7bb3" + "x-ms-correlation-request-id": "229ab52a-8d1e-4b02-a4cc-5357e1a8afd9", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "229ab52a-8d1e-4b02-a4cc-5357e1a8afd9", + "x-ms-routing-request-id": "WESTUS2:20210616T001955Z:229ab52a-8d1e-4b02-a4cc-5357e1a8afd9" }, "ResponseBody": [] }, @@ -9982,81 +10122,1705 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "21f6433829e51cfd454bb2f570680c5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 18:55:35 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:55 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3b54431a-6abb-434a-89c6-5d38d4877620", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "3b54431a-6abb-434a-89c6-5d38d4877620", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:3b54431a-6abb-434a-89c6-5d38d4877620" + "x-ms-correlation-request-id": "28910335-6c2e-4814-a54d-8757a897a9f1", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "28910335-6c2e-4814-a54d-8757a897a9f1", + "x-ms-routing-request-id": "WESTUS2:20210616T001956Z:28910335-6c2e-4814-a54d-8757a897a9f1" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "358a60be61a815a744a0959eb3514374", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:56 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "43ca78d5-a471-4549-b3c8-ab5e52854607", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "43ca78d5-a471-4549-b3c8-ab5e52854607", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:43ca78d5-a471-4549-b3c8-ab5e52854607" + "x-ms-correlation-request-id": "33aab4a9-3bf9-4c00-a0ae-0da385d5ce5e", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "33aab4a9-3bf9-4c00-a0ae-0da385d5ce5e", + "x-ms-routing-request-id": "WESTUS2:20210616T001957Z:33aab4a9-3bf9-4c00-a0ae-0da385d5ce5e" }, - "ResponseBody": { - "value": [] - } + "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d63d7dcaea7460fe549084d0045d0015", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "280", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:58 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ed184686-cf06-40ce-83f9-b34941c633bc", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "ed184686-cf06-40ce-83f9-b34941c633bc", - "x-ms-routing-request-id": "WESTUS2:20210519T185536Z:ed184686-cf06-40ce-83f9-b34941c633bc" + "x-ms-correlation-request-id": "bac8a5ff-2e37-4713-8d3e-44bd4ea49bf4", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "bac8a5ff-2e37-4713-8d3e-44bd4ea49bf4", + "x-ms-routing-request-id": "WESTUS2:20210616T001958Z:bac8a5ff-2e37-4713-8d3e-44bd4ea49bf4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b4db48534c0d78f9ce1dd45935e68f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1466fde5-06e1-46d8-bddc-a1bdbb53a94c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "1466fde5-06e1-46d8-bddc-a1bdbb53a94c", + "x-ms-routing-request-id": "WESTUS2:20210616T001959Z:1466fde5-06e1-46d8-bddc-a1bdbb53a94c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f32b3e08352bd4eb6229e018dcd610e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:19:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "796770cd-20b0-4684-8d8d-bfda00eeab2b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "796770cd-20b0-4684-8d8d-bfda00eeab2b", + "x-ms-routing-request-id": "WESTUS2:20210616T002000Z:796770cd-20b0-4684-8d8d-bfda00eeab2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fe18809f180395b3ed653a930cb8cdf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "adccbd8a-d018-497e-b745-0622168ac8e0", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "adccbd8a-d018-497e-b745-0622168ac8e0", + "x-ms-routing-request-id": "WESTUS2:20210616T002001Z:adccbd8a-d018-497e-b745-0622168ac8e0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6c890270d3150e9c979c8975477fac5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3e5ff060-76bb-43f2-99cd-a90f26e0a3ca", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "3e5ff060-76bb-43f2-99cd-a90f26e0a3ca", + "x-ms-routing-request-id": "WESTUS2:20210616T002002Z:3e5ff060-76bb-43f2-99cd-a90f26e0a3ca" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "13a5f6d06a46efef8b9605c6fa57c7a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "da8b374c-1368-4862-83de-40cb66a05ec3", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "da8b374c-1368-4862-83de-40cb66a05ec3", + "x-ms-routing-request-id": "WESTUS2:20210616T002003Z:da8b374c-1368-4862-83de-40cb66a05ec3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cf0eb5b4a0d92b596c8348a4f1b4076", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "52379c58-090d-40e7-975e-5c2e89f4749e", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "52379c58-090d-40e7-975e-5c2e89f4749e", + "x-ms-routing-request-id": "WESTUS2:20210616T002004Z:52379c58-090d-40e7-975e-5c2e89f4749e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "15c2746bba13bdafa1d83a9a07235571", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1cd2eea3-ad22-4dbb-91e9-e853402a2d9d", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "1cd2eea3-ad22-4dbb-91e9-e853402a2d9d", + "x-ms-routing-request-id": "WESTUS2:20210616T002005Z:1cd2eea3-ad22-4dbb-91e9-e853402a2d9d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "693b1eb1ae8685b841127c7e35659f6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "97504421-5b71-4fa7-bfdd-bd2648f6e235", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "97504421-5b71-4fa7-bfdd-bd2648f6e235", + "x-ms-routing-request-id": "WESTUS2:20210616T002006Z:97504421-5b71-4fa7-bfdd-bd2648f6e235" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "865b8f55b294a1963b33ab34101a8b73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dd56c0d9-f743-4b80-86d7-586fbe2a076c", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "dd56c0d9-f743-4b80-86d7-586fbe2a076c", + "x-ms-routing-request-id": "WESTUS2:20210616T002007Z:dd56c0d9-f743-4b80-86d7-586fbe2a076c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "31d8c372d7dfbcefbc3dd3003e30873b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c47d4878-3e62-452a-84be-5ae938c1f687", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "c47d4878-3e62-452a-84be-5ae938c1f687", + "x-ms-routing-request-id": "WESTUS2:20210616T002008Z:c47d4878-3e62-452a-84be-5ae938c1f687" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7845ca39cec7ffdc88992d5303837527", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3c60fbba-b355-4404-b36b-d8da556e718b", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "3c60fbba-b355-4404-b36b-d8da556e718b", + "x-ms-routing-request-id": "WESTUS2:20210616T002009Z:3c60fbba-b355-4404-b36b-d8da556e718b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "720b08876e8c7d909f9ec957de95630b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "97630c52-27cd-4afc-85cd-1b791db49f50", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "97630c52-27cd-4afc-85cd-1b791db49f50", + "x-ms-routing-request-id": "WESTUS2:20210616T002011Z:97630c52-27cd-4afc-85cd-1b791db49f50" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45fb6fab12d5a4ace6d9a846aa9cb939", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "10482fe3-da67-4d9d-82fa-da8ea8706fb7", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "10482fe3-da67-4d9d-82fa-da8ea8706fb7", + "x-ms-routing-request-id": "WESTUS2:20210616T002012Z:10482fe3-da67-4d9d-82fa-da8ea8706fb7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3579acc71525caaf3ac7d929058520f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b7658423-500c-4e30-b5ed-d37e17b30f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "b7658423-500c-4e30-b5ed-d37e17b30f2b", + "x-ms-routing-request-id": "WESTUS2:20210616T002013Z:b7658423-500c-4e30-b5ed-d37e17b30f2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "94a72236308774515b678cb2c54ad303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d43084b8-eff5-492b-a950-9f52f76db14a", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "d43084b8-eff5-492b-a950-9f52f76db14a", + "x-ms-routing-request-id": "WESTUS2:20210616T002014Z:d43084b8-eff5-492b-a950-9f52f76db14a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "318f90e52d1b96e5bf310a0e39839e60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c4325d00-e904-4221-bdfa-879d43247998", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "c4325d00-e904-4221-bdfa-879d43247998", + "x-ms-routing-request-id": "WESTUS2:20210616T002015Z:c4325d00-e904-4221-bdfa-879d43247998" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "880fb5b825f497b25a04d9be88fd05f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1a9bb636-9126-4f0a-9977-cbf140b8bb05", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "1a9bb636-9126-4f0a-9977-cbf140b8bb05", + "x-ms-routing-request-id": "WESTUS2:20210616T002016Z:1a9bb636-9126-4f0a-9977-cbf140b8bb05" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7443d5f3eff508d73c11d45525433bd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c3e5822-3ad1-4bf8-8bc3-5050c18f2c1e", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "2c3e5822-3ad1-4bf8-8bc3-5050c18f2c1e", + "x-ms-routing-request-id": "WESTUS2:20210616T002017Z:2c3e5822-3ad1-4bf8-8bc3-5050c18f2c1e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ff92bc84b3ac00fdef8d71753270ec2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d607a370-2b17-458e-8458-68ce13c73cef", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "d607a370-2b17-458e-8458-68ce13c73cef", + "x-ms-routing-request-id": "WESTUS2:20210616T002018Z:d607a370-2b17-458e-8458-68ce13c73cef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "641a1a2c2a3fc96bde074be3505c7117", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ef297752-d222-491c-a0ae-d53ae09fc2fb", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "ef297752-d222-491c-a0ae-d53ae09fc2fb", + "x-ms-routing-request-id": "WESTUS2:20210616T002019Z:ef297752-d222-491c-a0ae-d53ae09fc2fb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5cf501c9f503a8b6c68396fc18c0b415", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cfaebc55-8edb-4eb2-a6e0-c94dc2814059", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "cfaebc55-8edb-4eb2-a6e0-c94dc2814059", + "x-ms-routing-request-id": "WESTUS2:20210616T002020Z:cfaebc55-8edb-4eb2-a6e0-c94dc2814059" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0b291203d7289e99c0303132002b7081", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "569eafe1-f0ed-44e0-b668-c1d1167a00b0", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "569eafe1-f0ed-44e0-b668-c1d1167a00b0", + "x-ms-routing-request-id": "WESTUS2:20210616T002021Z:569eafe1-f0ed-44e0-b668-c1d1167a00b0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "524dbf86b13137be63729dbb936eb11e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "559e8913-33de-4cfa-9770-8a21ed0ef114", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "559e8913-33de-4cfa-9770-8a21ed0ef114", + "x-ms-routing-request-id": "WESTUS2:20210616T002022Z:559e8913-33de-4cfa-9770-8a21ed0ef114" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3de035536632f2ee67579cd2c383a79a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "abaa89ec-6e86-47d8-8032-a26a2e03b34c", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "abaa89ec-6e86-47d8-8032-a26a2e03b34c", + "x-ms-routing-request-id": "WESTUS2:20210616T002023Z:abaa89ec-6e86-47d8-8032-a26a2e03b34c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58751513617251e353f2a7b639dd0a52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "86bd9a1a-e4a3-4848-ba0a-190342b77325", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "86bd9a1a-e4a3-4848-ba0a-190342b77325", + "x-ms-routing-request-id": "WESTUS2:20210616T002024Z:86bd9a1a-e4a3-4848-ba0a-190342b77325" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cadf137e324b204fd15beada15eb73e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "58682dcb-335f-4f80-a06b-80ebac3ad011", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "58682dcb-335f-4f80-a06b-80ebac3ad011", + "x-ms-routing-request-id": "WESTUS2:20210616T002025Z:58682dcb-335f-4f80-a06b-80ebac3ad011" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7ea802ca59f8f1ac528ee940be38b88a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "713332a0-2aa2-4f04-a509-92b5a6dec4f1", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "713332a0-2aa2-4f04-a509-92b5a6dec4f1", + "x-ms-routing-request-id": "WESTUS2:20210616T002026Z:713332a0-2aa2-4f04-a509-92b5a6dec4f1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "af54494cdda4e04fc655861676093c67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "aad315ba-0fd7-462b-8483-a7b89b041072", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "aad315ba-0fd7-462b-8483-a7b89b041072", + "x-ms-routing-request-id": "WESTUS2:20210616T002027Z:aad315ba-0fd7-462b-8483-a7b89b041072" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "37ebc77e8c34255967ed77bd490e6199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a23bf177-d788-4b9b-b1ac-0e341cc083c2", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "a23bf177-d788-4b9b-b1ac-0e341cc083c2", + "x-ms-routing-request-id": "WESTUS2:20210616T002028Z:a23bf177-d788-4b9b-b1ac-0e341cc083c2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cb8d60a3c497ed3cb3c8b8a3d2957b48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3f47defa-c7d3-4312-8291-1975061f1840", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "3f47defa-c7d3-4312-8291-1975061f1840", + "x-ms-routing-request-id": "WESTUS2:20210616T002029Z:3f47defa-c7d3-4312-8291-1975061f1840" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7c18151814dc055f02e48b6659297b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3a2448ee-1dde-42c7-8af3-0752fdece2bf", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "3a2448ee-1dde-42c7-8af3-0752fdece2bf", + "x-ms-routing-request-id": "WESTUS2:20210616T002030Z:3a2448ee-1dde-42c7-8af3-0752fdece2bf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1672edf3717bbad08afd846cd4b652d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "30b8d28e-c368-41df-b521-1ead62213886", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "30b8d28e-c368-41df-b521-1ead62213886", + "x-ms-routing-request-id": "WESTUS2:20210616T002031Z:30b8d28e-c368-41df-b521-1ead62213886" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c76b2f72694d224c0acddb687b858721", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1809d688-d47f-419c-b140-3f750ced32e3", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "1809d688-d47f-419c-b140-3f750ced32e3", + "x-ms-routing-request-id": "WESTUS2:20210616T002032Z:1809d688-d47f-419c-b140-3f750ced32e3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e5af00316523e0ccb1076c4ffce9eb39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c6a5acbc-20c2-4db8-86e1-93eac1a78b16", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "c6a5acbc-20c2-4db8-86e1-93eac1a78b16", + "x-ms-routing-request-id": "WESTUS2:20210616T002033Z:c6a5acbc-20c2-4db8-86e1-93eac1a78b16" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "364377dccf27896aa1500bae96673f05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7b16f7e9-2118-4fe4-bbb6-f13a7d83a3d2", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "7b16f7e9-2118-4fe4-bbb6-f13a7d83a3d2", + "x-ms-routing-request-id": "WESTUS2:20210616T002034Z:7b16f7e9-2118-4fe4-bbb6-f13a7d83a3d2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d33b63766d070dae628a1645fdfc2521", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "005b8836-4e51-4802-8e0f-057618a94450", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "005b8836-4e51-4802-8e0f-057618a94450", + "x-ms-routing-request-id": "WESTUS2:20210616T002035Z:005b8836-4e51-4802-8e0f-057618a94450" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "048ca1e1514161f9962544d2591e4a4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e1c45604-88e2-46f7-96ea-ad71ad64b7c6", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "e1c45604-88e2-46f7-96ea-ad71ad64b7c6", + "x-ms-routing-request-id": "WESTUS2:20210616T002036Z:e1c45604-88e2-46f7-96ea-ad71ad64b7c6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "99d967c818ad6e32c936d49cb9248ca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5f66d641-05af-4a8e-9d65-e853c43d545e", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "5f66d641-05af-4a8e-9d65-e853c43d545e", + "x-ms-routing-request-id": "WESTUS2:20210616T002037Z:5f66d641-05af-4a8e-9d65-e853c43d545e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4ccea2b3ada24c369d93ce129dbb443", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3313b730-afe0-4bc4-a1bd-f5e22b4a3ec2", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "3313b730-afe0-4bc4-a1bd-f5e22b4a3ec2", + "x-ms-routing-request-id": "WESTUS2:20210616T002038Z:3313b730-afe0-4bc4-a1bd-f5e22b4a3ec2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "957dcb3f8b23c9736f1d3a0b7c5da872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c30a5b3-052d-4e69-b79d-31109519377f", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "2c30a5b3-052d-4e69-b79d-31109519377f", + "x-ms-routing-request-id": "WESTUS2:20210616T002039Z:2c30a5b3-052d-4e69-b79d-31109519377f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6ea79f9956518d6fa4b430d4db5045ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "20f46247-9cf2-4cfd-a42d-e3a59d5ccb21", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "20f46247-9cf2-4cfd-a42d-e3a59d5ccb21", + "x-ms-routing-request-id": "WESTUS2:20210616T002041Z:20f46247-9cf2-4cfd-a42d-e3a59d5ccb21" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed5d9082f6a69f80770285bc00b7a80b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "aa610760-de14-4b73-84b1-99f3f7c17abf", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "aa610760-de14-4b73-84b1-99f3f7c17abf", + "x-ms-routing-request-id": "WESTUS2:20210616T002042Z:aa610760-de14-4b73-84b1-99f3f7c17abf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8948ca304534e9f15cf0f16f5b9fee1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8b701152-c42c-4da8-b17f-875270856e03", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "8b701152-c42c-4da8-b17f-875270856e03", + "x-ms-routing-request-id": "WESTUS2:20210616T002043Z:8b701152-c42c-4da8-b17f-875270856e03" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb894dd8bb00a2cb1f08f74fd1b28dec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "41547004-fa71-4eef-81b2-9ec555395274", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "41547004-fa71-4eef-81b2-9ec555395274", + "x-ms-routing-request-id": "WESTUS2:20210616T002044Z:41547004-fa71-4eef-81b2-9ec555395274" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "10a3240cbc083db99f7390b6051144d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e06364b7-a939-41b9-948f-d42589a153c2", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "e06364b7-a939-41b9-948f-d42589a153c2", + "x-ms-routing-request-id": "WESTUS2:20210616T002045Z:e06364b7-a939-41b9-948f-d42589a153c2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2e46613bc2e750bfea6692b4da218a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b148bef2-7a09-46d1-a190-bdf614c1ce9b", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "b148bef2-7a09-46d1-a190-bdf614c1ce9b", + "x-ms-routing-request-id": "WESTUS2:20210616T002046Z:b148bef2-7a09-46d1-a190-bdf614c1ce9b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "36620463defb1b16944b4c8c2a159d0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f997af8e-5fe4-447f-b068-0cc57be9acfd", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "f997af8e-5fe4-447f-b068-0cc57be9acfd", + "x-ms-routing-request-id": "WESTUS2:20210616T002047Z:f997af8e-5fe4-447f-b068-0cc57be9acfd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6a3b1fc3dace50be192e1161528deffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "22004314-3444-4399-9d73-fec564e016c0", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "22004314-3444-4399-9d73-fec564e016c0", + "x-ms-routing-request-id": "WESTUS2:20210616T002048Z:22004314-3444-4399-9d73-fec564e016c0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0052e75b0dae35dc4fc81ee26f7f4ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f3024fc4-6020-459b-b3df-7085184642cb", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "f3024fc4-6020-459b-b3df-7085184642cb", + "x-ms-routing-request-id": "WESTUS2:20210616T002049Z:f3024fc4-6020-459b-b3df-7085184642cb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d675b09ad6688da46121dcdccb4c906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "275e71bd-5ee7-45a2-b2a0-29244412862a", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "275e71bd-5ee7-45a2-b2a0-29244412862a", + "x-ms-routing-request-id": "WESTUS2:20210616T002050Z:275e71bd-5ee7-45a2-b2a0-29244412862a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4330505b9cc2b65f43051b06bcdbe19a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bb31fda2-a9e0-42b4-a157-63c407d24109", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "bb31fda2-a9e0-42b4-a157-63c407d24109", + "x-ms-routing-request-id": "WESTUS2:20210616T002051Z:bb31fda2-a9e0-42b4-a157-63c407d24109" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f65828e3c225ae950dcaba9bf00e699b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2f56b1e5-93b8-49db-9b1f-d400defb31e0", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "2f56b1e5-93b8-49db-9b1f-d400defb31e0", + "x-ms-routing-request-id": "WESTUS2:20210616T002052Z:2f56b1e5-93b8-49db-9b1f-d400defb31e0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1e8617fe074e6c26fcb1ea6192d4cc6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "866b4acf-cc18-4682-bcaa-44978810d2c6", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "866b4acf-cc18-4682-bcaa-44978810d2c6", + "x-ms-routing-request-id": "WESTUS2:20210616T002053Z:866b4acf-cc18-4682-bcaa-44978810d2c6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3e98331d25b99e0ba8236f8e2c3c534", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "43da8177-16a2-4483-81a4-29d1d3cf7608", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "43da8177-16a2-4483-81a4-29d1d3cf7608", + "x-ms-routing-request-id": "WESTUS2:20210616T002054Z:43da8177-16a2-4483-81a4-29d1d3cf7608" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4077f9bc254dc4b02ecfa73d7341c38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:20:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9ecb7b89-483f-4442-bda7-964e0d315ea3", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "9ecb7b89-483f-4442-bda7-964e0d315ea3", + "x-ms-routing-request-id": "WESTUS2:20210616T002055Z:9ecb7b89-483f-4442-bda7-964e0d315ea3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzk2MDYtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6d6a4efdc6252b3f37ec64cbd12d8a38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9db0a882-f3b4-4801-9540-ca8e217dada6", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "9db0a882-f3b4-4801-9540-ca8e217dada6", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:9db0a882-f3b4-4801-9540-ca8e217dada6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9606/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12c5b6ec28cd6f16370ca16fd86cc286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d36c599-d68c-433c-b642-4c627a786f90", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "8d36c599-d68c-433c-b642-4c627a786f90", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:8d36c599-d68c-433c-b642-4c627a786f90" + }, + "ResponseBody": { + "value": [] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "93fbfd665759d50e40db6d675d7f0bd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "280", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 16 Jun 2021 00:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4e670f69-47eb-459d-b891-2a86d94d1c4a", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "4e670f69-47eb-459d-b891-2a86d94d1c4a", + "x-ms-routing-request-id": "WESTUS2:20210616T002056Z:4e670f69-47eb-459d-b891-2a86d94d1c4a" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json index d2302facb6f8..bc5b5e4fe1d1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6ffc846aeb359d2d4029b3b201599d2", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Date": "Wed, 16 Jun 2021 00:15:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "103cec85-092a-4ab6-b565-c230f76e4346", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "103cec85-092a-4ab6-b565-c230f76e4346", - "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:103cec85-092a-4ab6-b565-c230f76e4346" + "x-ms-correlation-request-id": "10dd8ce8-d50c-4e1e-bb04-180854b06285", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "10dd8ce8-d50c-4e1e-bb04-180854b06285", + "x-ms-routing-request-id": "WESTUS2:20210616T001551Z:10dd8ce8-d50c-4e1e-bb04-180854b06285" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-fb13be64cf9b6649af51ce3288000fbb-d4ef720b0380eb40-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-324b8e869b9029449ecdb4906fc56e2e-3a76416665bc2a49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ae685874b4fa1ded043fd3fec017466", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:37 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "caad52f4-d33e-480b-8fc5-ed10e379e795", + "x-ms-correlation-request-id": "31b0bb5a-c07b-4845-8cb8-6da8b6d3d83d", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "caad52f4-d33e-480b-8fc5-ed10e379e795", - "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:caad52f4-d33e-480b-8fc5-ed10e379e795" + "x-ms-request-id": "31b0bb5a-c07b-4845-8cb8-6da8b6d3d83d", + "x-ms-routing-request-id": "WESTUS2:20210616T001552Z:31b0bb5a-c07b-4845-8cb8-6da8b6d3d83d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-34c1354ef64f074c9f8b3b850c3c047a-a1eb70b87e75354e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-73042809ebbfec4eba22b18c149d4378-1c833441edf7c248-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ee5a98cdfdc93bf65c292f4014dbfd6", "x-ms-return-client-request-id": "true" }, @@ -108,15 +112,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:37 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e4e631a-3cc7-494c-bd04-cf59d3f1428e", + "x-ms-correlation-request-id": "4be311a2-ec8b-4c37-a5d0-3c0c0366e9ba", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "3e4e631a-3cc7-494c-bd04-cf59d3f1428e", - "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:3e4e631a-3cc7-494c-bd04-cf59d3f1428e" + "x-ms-request-id": "4be311a2-ec8b-4c37-a5d0-3c0c0366e9ba", + "x-ms-routing-request-id": "WESTUS2:20210616T001553Z:4be311a2-ec8b-4c37-a5d0-3c0c0366e9ba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", @@ -140,7 +144,7 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a58c0fdfe0ad7cf72054e36bd41ae801", "x-ms-return-client-request-id": "true" }, @@ -154,15 +158,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:38 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1f6c2da-2dd1-4f48-811e-5873fe355df9", + "x-ms-correlation-request-id": "3e558a23-06f6-463d-a570-22df83cff531", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "e1f6c2da-2dd1-4f48-811e-5873fe355df9", - "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:e1f6c2da-2dd1-4f48-811e-5873fe355df9" + "x-ms-request-id": "3e558a23-06f6-463d-a570-22df83cff531", + "x-ms-routing-request-id": "WESTUS2:20210616T001553Z:3e558a23-06f6-463d-a570-22df83cff531" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9790", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json index 469ce034f592..1691e2460ec4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/RemoveTag()Async.json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "517c7f119e063fc978ff7963cbcca1ae", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:36 GMT", + "Date": "Wed, 16 Jun 2021 00:15:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50792b8e-2d0f-4ded-ac04-38b4599f95f0", - "x-ms-ratelimit-remaining-subscription-reads": "11500", - "x-ms-request-id": "50792b8e-2d0f-4ded-ac04-38b4599f95f0", - "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:50792b8e-2d0f-4ded-ac04-38b4599f95f0" + "x-ms-correlation-request-id": "6c9def4c-5534-492c-9e82-5563bb43ba87", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "6c9def4c-5534-492c-9e82-5563bb43ba87", + "x-ms-routing-request-id": "WESTUS2:20210616T001551Z:6c9def4c-5534-492c-9e82-5563bb43ba87" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-88b51bae440baf41bbf6d2934d9ab6df-2d58c40a1f4c1641-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-de9c9885c11d6841996542775db85b32-db4d2747576de047-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "70a60d763441813b3a1352c2e4d4c5d7", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:37 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6066a068-b1aa-44c4-9306-675c950b5edb", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "6066a068-b1aa-44c4-9306-675c950b5edb", - "x-ms-routing-request-id": "WESTUS2:20210519T185537Z:6066a068-b1aa-44c4-9306-675c950b5edb" + "x-ms-correlation-request-id": "2186a25a-af12-479f-8b1c-5cdb796680db", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "2186a25a-af12-479f-8b1c-5cdb796680db", + "x-ms-routing-request-id": "WESTUS2:20210616T001552Z:2186a25a-af12-479f-8b1c-5cdb796680db" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", @@ -92,7 +96,7 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0345283fa353f83460591dfed7bc2e6f", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:38 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac98ac2-b79f-4313-9d5c-98d40402d63f", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "eac98ac2-b79f-4313-9d5c-98d40402d63f", - "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:eac98ac2-b79f-4313-9d5c-98d40402d63f" + "x-ms-correlation-request-id": "e753f820-4b74-493c-aedc-4340b2186550", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "e753f820-4b74-493c-aedc-4340b2186550", + "x-ms-routing-request-id": "WESTUS2:20210616T001553Z:e753f820-4b74-493c-aedc-4340b2186550" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", @@ -139,7 +143,7 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf89515e39cd4ad040d0cb8a767d932a", "x-ms-return-client-request-id": "true" }, @@ -153,15 +157,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:38 GMT", + "Date": "Wed, 16 Jun 2021 00:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e3ab042-b08a-4fcd-9481-8771159dbe57", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "8e3ab042-b08a-4fcd-9481-8771159dbe57", - "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:8e3ab042-b08a-4fcd-9481-8771159dbe57" + "x-ms-correlation-request-id": "6256d304-b541-42f2-8001-ad5cdc6a3336", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "6256d304-b541-42f2-8001-ad5cdc6a3336", + "x-ms-routing-request-id": "WESTUS2:20210616T001553Z:6256d304-b541-42f2-8001-ad5cdc6a3336" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3485", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json index a7627b027482..50fb39b366bf 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "108869ad96c06c2bdb0886fbae9de40e", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:37 GMT", + "Date": "Wed, 16 Jun 2021 00:15:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb8fd135-d043-406c-939b-b335993647dc", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "fb8fd135-d043-406c-939b-b335993647dc", - "x-ms-routing-request-id": "WESTUS2:20210519T185538Z:fb8fd135-d043-406c-939b-b335993647dc" + "x-ms-correlation-request-id": "694a3b71-6cc7-4f6a-a578-c67e91b304a1", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "694a3b71-6cc7-4f6a-a578-c67e91b304a1", + "x-ms-routing-request-id": "WESTUS2:20210616T001539Z:694a3b71-6cc7-4f6a-a578-c67e91b304a1" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-df1ca08f5a4eee4ab9142f25b1d0c77e-ea651f38c8ef1447-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a1ef24c1267df14da6f10306d3272275-c8e4965452311048-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b2d52f2d95f5bed589c19fc232d5cdbd", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:38 GMT", + "Date": "Wed, 16 Jun 2021 00:15:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a", + "x-ms-correlation-request-id": "680dfe59-f57e-424d-8c0a-d85217d55a07", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a", - "x-ms-routing-request-id": "WESTUS2:20210519T185539Z:1a5ddf27-2bcf-4ea3-afed-f92a397d0f4a" + "x-ms-request-id": "680dfe59-f57e-424d-8c0a-d85217d55a07", + "x-ms-routing-request-id": "WESTUS2:20210616T001540Z:680dfe59-f57e-424d-8c0a-d85217d55a07" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", @@ -92,8 +96,7 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-59c9e2210b4335429ee412f37a8e652e-19e7febbd6b6004b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a56870f0dc79c820c2c237b1a6f0af0", "x-ms-return-client-request-id": "true" }, @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:40 GMT", + "Date": "Wed, 16 Jun 2021 00:15:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f01b46d6-ad35-4aa9-b32c-2ed604291948", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "f01b46d6-ad35-4aa9-b32c-2ed604291948", - "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:f01b46d6-ad35-4aa9-b32c-2ed604291948" + "x-ms-correlation-request-id": "cdec199b-6a41-478f-8711-918964c8ca77", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "cdec199b-6a41-478f-8711-918964c8ca77", + "x-ms-routing-request-id": "WESTUS2:20210616T001540Z:cdec199b-6a41-478f-8711-918964c8ca77" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3012", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json index 22d1ffb4e43e..e4eb4f2d00c9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/SetTags()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f58fc9333cf55468c6e7ebff64bf38d-682a2281b2728a4a-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d8e4bf2fbb2c517db2bcb3a532889d1", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:38 GMT", + "Date": "Wed, 16 Jun 2021 00:15:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83403c58-7e4e-408a-88c4-56ff4ab44c75", - "x-ms-ratelimit-remaining-subscription-reads": "11497", - "x-ms-request-id": "83403c58-7e4e-408a-88c4-56ff4ab44c75", - "x-ms-routing-request-id": "WESTUS2:20210519T185539Z:83403c58-7e4e-408a-88c4-56ff4ab44c75" + "x-ms-correlation-request-id": "468b8f29-7f90-4ec9-a620-0834f6aca1e9", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "468b8f29-7f90-4ec9-a620-0834f6aca1e9", + "x-ms-routing-request-id": "WESTUS2:20210616T001539Z:468b8f29-7f90-4ec9-a620-0834f6aca1e9" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f322e15ac597b6498f52a8120e11d679-e6d7cec1a1a1d54e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ab1563a6d517474291538a834f280964-50cda2fcd05e9c4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed49031a4ea60df2c3ad9483acaff1e7", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:39 GMT", + "Date": "Wed, 16 Jun 2021 00:15:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b422dece-d151-47f7-a6a0-c30174ed64d9", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "b422dece-d151-47f7-a6a0-c30174ed64d9", - "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:b422dece-d151-47f7-a6a0-c30174ed64d9" + "x-ms-correlation-request-id": "61fb6e93-8563-48e2-93fe-630a40058561", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "61fb6e93-8563-48e2-93fe-630a40058561", + "x-ms-routing-request-id": "WESTUS2:20210616T001540Z:61fb6e93-8563-48e2-93fe-630a40058561" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", @@ -93,7 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9b84fed6106c594781711006fa71c63f-d6959cb88023ca41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e46d9d60aed241c1f536821f1922e93", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:40 GMT", + "Date": "Wed, 16 Jun 2021 00:15:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "067885c1-2dc3-48b0-8d74-959c3eb47ad2", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "067885c1-2dc3-48b0-8d74-959c3eb47ad2", - "x-ms-routing-request-id": "WESTUS2:20210519T185540Z:067885c1-2dc3-48b0-8d74-959c3eb47ad2" + "x-ms-correlation-request-id": "d570392f-c2dd-487f-8688-4c37728942b7", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "d570392f-c2dd-487f-8688-4c37728942b7", + "x-ms-routing-request-id": "WESTUS2:20210616T001540Z:d570392f-c2dd-487f-8688-4c37728942b7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg844", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json index d6e1565df35b..5bb05589722f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2e2980aa5db3bb6186f13aeb46a6b1c", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:40 GMT", + "Date": "Wed, 16 Jun 2021 00:15:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3988cbd-7f5c-4c3b-b509-519ec3ba7250", - "x-ms-ratelimit-remaining-subscription-reads": "11492", - "x-ms-request-id": "a3988cbd-7f5c-4c3b-b509-519ec3ba7250", - "x-ms-routing-request-id": "WESTUS2:20210519T185541Z:a3988cbd-7f5c-4c3b-b509-519ec3ba7250" + "x-ms-correlation-request-id": "34137671-af81-4c31-be3f-bb39233de2e8", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "34137671-af81-4c31-be3f-bb39233de2e8", + "x-ms-routing-request-id": "WESTUS2:20210616T001525Z:34137671-af81-4c31-be3f-bb39233de2e8" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6df84d52a6d1284abc3e7e306a76da77-c687429c7d287e41-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9c3c923881742145929f570732e9db1c-419bd3c60020ce4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e31e8ad546bc8035dec983139602b517", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:41 GMT", + "Date": "Wed, 16 Jun 2021 00:15:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1801a460-7718-40df-8563-5ddaec553659", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "1801a460-7718-40df-8563-5ddaec553659", - "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:1801a460-7718-40df-8563-5ddaec553659" + "x-ms-correlation-request-id": "30c4af91-6255-42ac-867c-6df6160e8a0c", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "30c4af91-6255-42ac-867c-6df6160e8a0c", + "x-ms-routing-request-id": "WESTUS2:20210616T001526Z:30c4af91-6255-42ac-867c-6df6160e8a0c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-e5eee81c7130a145b257b7cbe97322ff-d19c0bee728f8447-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a860efa0c4a51042bc80b2753f2e1fbd-866a341f2647f541-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "747dbaa8b242fa489077270d4590a8c7", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:15:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffa300d8-6165-4e67-9fa6-7984c7718e27", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "ffa300d8-6165-4e67-9fa6-7984c7718e27", - "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:ffa300d8-6165-4e67-9fa6-7984c7718e27" + "x-ms-correlation-request-id": "51287d20-67c5-4ae7-b524-a1de1060af2a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "51287d20-67c5-4ae7-b524-a1de1060af2a", + "x-ms-routing-request-id": "WESTUS2:20210616T001527Z:51287d20-67c5-4ae7-b524-a1de1060af2a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3562", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json index 76389d003a31..c6e526031827 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartAddTag()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2a-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "419b0507b48c89952eb8bc9ebc8fdf26", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:40 GMT", + "Date": "Wed, 16 Jun 2021 00:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4", - "x-ms-routing-request-id": "WESTUS2:20210519T185541Z:f17b7bf7-a678-4ea8-b8b7-d169eadd4fa4" + "x-ms-correlation-request-id": "c30acffa-7753-4b7e-9f36-979d18773a02", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "c30acffa-7753-4b7e-9f36-979d18773a02", + "x-ms-routing-request-id": "WESTUS2:20210616T001525Z:c30acffa-7753-4b7e-9f36-979d18773a02" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5231795d6fdeae4da0f96fde3692df2f-ad1f5a63d6553f49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0daf2da918fa3748a7683e781e508239-e63c1befa07ec34d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04e7864d2a4d3a9c15f6443d32990891", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:41 GMT", + "Date": "Wed, 16 Jun 2021 00:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7c1e199-c194-4f2a-a64a-c220b7b8426d", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "d7c1e199-c194-4f2a-a64a-c220b7b8426d", - "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:d7c1e199-c194-4f2a-a64a-c220b7b8426d" + "x-ms-correlation-request-id": "5c72cde2-51bc-4ba8-9eeb-805926873a9a", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "5c72cde2-51bc-4ba8-9eeb-805926873a9a", + "x-ms-routing-request-id": "WESTUS2:20210616T001526Z:5c72cde2-51bc-4ba8-9eeb-805926873a9a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-dccbba3a1a3f3f4cb66747e650eb25c2-7ddf3417ad578b44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-35efd15ca9538448b90b7323e7821221-001176ce2bd6f746-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b4c68b5040bc1aa29beea545e73cfa0", "x-ms-return-client-request-id": "true" }, @@ -108,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "239", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:15:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e", - "x-ms-routing-request-id": "WESTUS2:20210519T185542Z:4aa7f521-68e1-42f0-ba4e-c3f64ed63f5e" + "x-ms-correlation-request-id": "cef4f0bf-c357-4b79-9fcd-dea7305d5936", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "cef4f0bf-c357-4b79-9fcd-dea7305d5936", + "x-ms-routing-request-id": "WESTUS2:20210616T001526Z:cef4f0bf-c357-4b79-9fcd-dea7305d5936" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg325", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json index 6587b0c22bb2..4ac6409cfc5e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57ba98b6b750f3cd7f853ac8591dc902", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:14:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "798ee8fb-6d64-41d1-84ae-1d346303e706", - "x-ms-ratelimit-remaining-subscription-reads": "11488", - "x-ms-request-id": "798ee8fb-6d64-41d1-84ae-1d346303e706", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:798ee8fb-6d64-41d1-84ae-1d346303e706" + "x-ms-correlation-request-id": "6c62a6c4-1935-44ba-8e77-98a581e7de19", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "6c62a6c4-1935-44ba-8e77-98a581e7de19", + "x-ms-routing-request-id": "WESTUS2:20210616T001433Z:6c62a6c4-1935-44ba-8e77-98a581e7de19" }, "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", @@ -47,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3181f999557ea440a9b661d300177aaf-b06d5c88743bb546-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-70cabfe33286a341be131d951da6e1ad-2dc20c2d50b1b241-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23a8f49b6e1c00635d75b25673df6e9d", "x-ms-return-client-request-id": "true" }, @@ -58,16 +62,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:14:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "144dbbbc-1907-48cb-928f-4e980990715f", + "x-ms-correlation-request-id": "2b9aec71-27e7-4a97-b267-bdca6b3dcdda", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14987", - "x-ms-request-id": "144dbbbc-1907-48cb-928f-4e980990715f", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:144dbbbc-1907-48cb-928f-4e980990715f" + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "2b9aec71-27e7-4a97-b267-bdca6b3dcdda", + "x-ms-routing-request-id": "WESTUS2:20210616T001433Z:2b9aec71-27e7-4a97-b267-bdca6b3dcdda" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json index 209eebf193d9..3e5e6e300072 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteNonExistantRg()Async.json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a59e3ba18f02fb41c9f7e14a75be1692", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:14:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "069627dc-37db-4295-9720-91c6b81a4313", - "x-ms-ratelimit-remaining-subscription-reads": "11487", - "x-ms-request-id": "069627dc-37db-4295-9720-91c6b81a4313", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:069627dc-37db-4295-9720-91c6b81a4313" + "x-ms-correlation-request-id": "342f590d-7a26-403e-89c6-af9bf5f2706d", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "342f590d-7a26-403e-89c6-af9bf5f2706d", + "x-ms-routing-request-id": "WESTUS2:20210616T001433Z:342f590d-7a26-403e-89c6-af9bf5f2706d" }, "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", @@ -47,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0f22bd79bbb91e48a12fed3af239bcc6-549b064163852e4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-16a36634ab65f34ca0cec1be4b123e94-c514d7da06fc334f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "59da4c8c96951def4aed1446f27b5729", "x-ms-return-client-request-id": "true" }, @@ -58,16 +62,16 @@ "Cache-Control": "no-cache", "Content-Length": "96", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:42 GMT", + "Date": "Wed, 16 Jun 2021 00:14:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46645bc6-7355-4dfc-8cec-bd853eac57ef", + "x-ms-correlation-request-id": "6c6f4f5d-3c6b-4031-aaa2-83fd3b0577f0", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "46645bc6-7355-4dfc-8cec-bd853eac57ef", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:46645bc6-7355-4dfc-8cec-bd853eac57ef" + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "6c6f4f5d-3c6b-4031-aaa2-83fd3b0577f0", + "x-ms-routing-request-id": "WESTUS2:20210616T001433Z:6c6f4f5d-3c6b-4031-aaa2-83fd3b0577f0" }, "ResponseBody": { "error": { 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 104690954d8a..0ce24e9dbc2c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartDeleteRg().json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2b-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:43 GMT", + "Date": "Wed, 16 Jun 2021 00:13:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b79b3ae-ea5f-4c50-b545-87a78f915d4d", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "8b79b3ae-ea5f-4c50-b545-87a78f915d4d", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:8b79b3ae-ea5f-4c50-b545-87a78f915d4d" + "x-ms-correlation-request-id": "03b5f547-666a-4a64-9e81-8f89c2407fb9", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "03b5f547-666a-4a64-9e81-8f89c2407fb9", + "x-ms-routing-request-id": "WESTUS2:20210616T001348Z:03b5f547-666a-4a64-9e81-8f89c2407fb9" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-c353bbd378dc9b43a912c1b1b15c628b-dac1134587716e45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dd804506a0455d4e91a1b5185cf7b77b-e1b2c549de64db49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:44 GMT", + "Date": "Wed, 16 Jun 2021 00:13:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5345baa2-0f0a-4a29-8559-62e1b66f6c95", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "5345baa2-0f0a-4a29-8559-62e1b66f6c95", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:5345baa2-0f0a-4a29-8559-62e1b66f6c95" + "x-ms-correlation-request-id": "107f448d-6813-4e63-a561-89b2a1089b65", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "107f448d-6813-4e63-a561-89b2a1089b65", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:107f448d-6813-4e63-a561-89b2a1089b65" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1124", @@ -91,8 +94,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9072cda31960044faab848453412a6e9-5200e484f37f7249-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-01dae54775b82d4dbd2e2345d4710035-d02a3a8189a08c42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -101,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:44 GMT", + "Date": "Wed, 16 Jun 2021 00:13:49 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": "d4fa1286-406c-43f4-848f-bfc08ca8b3cb", - "x-ms-ratelimit-remaining-subscription-deletes": "14982", - "x-ms-request-id": "d4fa1286-406c-43f4-848f-bfc08ca8b3cb", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d4fa1286-406c-43f4-848f-bfc08ca8b3cb" + "x-ms-correlation-request-id": "4d2e2cb5-d081-4055-a248-b06629fc214a", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "4d2e2cb5-d081-4055-a248-b06629fc214a", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:4d2e2cb5-d081-4055-a248-b06629fc214a" }, "ResponseBody": [] }, @@ -120,7 +123,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fbef7585faba1a4aa907b79098f98cea-e2dbb7ed974eb947-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -129,17 +133,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:44 GMT", + "Date": "Wed, 16 Jun 2021 00:13:49 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": "d5ebf988-dc04-4b58-9db0-72f9e39b7c3c", - "x-ms-ratelimit-remaining-subscription-reads": "11482", - "x-ms-request-id": "d5ebf988-dc04-4b58-9db0-72f9e39b7c3c", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d5ebf988-dc04-4b58-9db0-72f9e39b7c3c" + "x-ms-correlation-request-id": "a3796cb8-3bc0-4563-80f2-007fd4b67188", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "a3796cb8-3bc0-4563-80f2-007fd4b67188", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:a3796cb8-3bc0-4563-80f2-007fd4b67188" }, "ResponseBody": [] }, @@ -148,7 +152,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -157,17 +161,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:45 GMT", + "Date": "Wed, 16 Jun 2021 00:13:50 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": "fee7299e-0763-4d99-9c77-b4a50695b44e", - "x-ms-ratelimit-remaining-subscription-reads": "11480", - "x-ms-request-id": "fee7299e-0763-4d99-9c77-b4a50695b44e", - "x-ms-routing-request-id": "WESTUS2:20210519T185545Z:fee7299e-0763-4d99-9c77-b4a50695b44e" + "x-ms-correlation-request-id": "257effde-2bb9-439a-ae7a-b89997bebb1f", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "257effde-2bb9-439a-ae7a-b89997bebb1f", + "x-ms-routing-request-id": "WESTUS2:20210616T001350Z:257effde-2bb9-439a-ae7a-b89997bebb1f" }, "ResponseBody": [] }, @@ -176,7 +180,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -185,17 +189,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:46 GMT", + "Date": "Wed, 16 Jun 2021 00:13:51 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": "86828625-50e5-47f1-98ff-e9e1d8ef4ab1", - "x-ms-ratelimit-remaining-subscription-reads": "11478", - "x-ms-request-id": "86828625-50e5-47f1-98ff-e9e1d8ef4ab1", - "x-ms-routing-request-id": "WESTUS2:20210519T185546Z:86828625-50e5-47f1-98ff-e9e1d8ef4ab1" + "x-ms-correlation-request-id": "ad7e7e9d-2f8f-4819-bd1e-658c444ba0fc", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "ad7e7e9d-2f8f-4819-bd1e-658c444ba0fc", + "x-ms-routing-request-id": "WESTUS2:20210616T001351Z:ad7e7e9d-2f8f-4819-bd1e-658c444ba0fc" }, "ResponseBody": [] }, @@ -204,7 +208,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -213,17 +217,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:47 GMT", + "Date": "Wed, 16 Jun 2021 00:13:52 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": "121e7ad6-752f-4248-b35e-e671c26eaa86", - "x-ms-ratelimit-remaining-subscription-reads": "11476", - "x-ms-request-id": "121e7ad6-752f-4248-b35e-e671c26eaa86", - "x-ms-routing-request-id": "WESTUS2:20210519T185547Z:121e7ad6-752f-4248-b35e-e671c26eaa86" + "x-ms-correlation-request-id": "4cd4ae46-ca92-4135-8b93-1a763c442d9b", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "4cd4ae46-ca92-4135-8b93-1a763c442d9b", + "x-ms-routing-request-id": "WESTUS2:20210616T001352Z:4cd4ae46-ca92-4135-8b93-1a763c442d9b" }, "ResponseBody": [] }, @@ -232,7 +236,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -241,17 +245,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:48 GMT", + "Date": "Wed, 16 Jun 2021 00:13:53 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": "5ee2dc14-8e60-4e65-b587-6e30caab6916", - "x-ms-ratelimit-remaining-subscription-reads": "11474", - "x-ms-request-id": "5ee2dc14-8e60-4e65-b587-6e30caab6916", - "x-ms-routing-request-id": "WESTUS2:20210519T185548Z:5ee2dc14-8e60-4e65-b587-6e30caab6916" + "x-ms-correlation-request-id": "89f0d44f-75ce-41f0-bab9-8197ede48dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "89f0d44f-75ce-41f0-bab9-8197ede48dc4", + "x-ms-routing-request-id": "WESTUS2:20210616T001353Z:89f0d44f-75ce-41f0-bab9-8197ede48dc4" }, "ResponseBody": [] }, @@ -260,7 +264,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -269,17 +273,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:49 GMT", + "Date": "Wed, 16 Jun 2021 00:13:54 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": "99de3f99-bfb7-43fe-8c92-5a4d32c43989", - "x-ms-ratelimit-remaining-subscription-reads": "11472", - "x-ms-request-id": "99de3f99-bfb7-43fe-8c92-5a4d32c43989", - "x-ms-routing-request-id": "WESTUS2:20210519T185549Z:99de3f99-bfb7-43fe-8c92-5a4d32c43989" + "x-ms-correlation-request-id": "95fee098-30ed-43fd-84e5-9fa9036e9ef9", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "95fee098-30ed-43fd-84e5-9fa9036e9ef9", + "x-ms-routing-request-id": "WESTUS2:20210616T001354Z:95fee098-30ed-43fd-84e5-9fa9036e9ef9" }, "ResponseBody": [] }, @@ -288,7 +292,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -297,17 +301,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:50 GMT", + "Date": "Wed, 16 Jun 2021 00:13:55 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": "be045964-638f-45c0-a653-63c76cc01f11", - "x-ms-ratelimit-remaining-subscription-reads": "11470", - "x-ms-request-id": "be045964-638f-45c0-a653-63c76cc01f11", - "x-ms-routing-request-id": "WESTUS2:20210519T185550Z:be045964-638f-45c0-a653-63c76cc01f11" + "x-ms-correlation-request-id": "06178ee8-d435-4528-8b10-ebec3695deec", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "06178ee8-d435-4528-8b10-ebec3695deec", + "x-ms-routing-request-id": "WESTUS2:20210616T001355Z:06178ee8-d435-4528-8b10-ebec3695deec" }, "ResponseBody": [] }, @@ -316,7 +320,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -325,17 +329,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:51 GMT", + "Date": "Wed, 16 Jun 2021 00:13:56 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": "fc47c9fa-44bf-4406-a5bc-f25907ba4996", - "x-ms-ratelimit-remaining-subscription-reads": "11468", - "x-ms-request-id": "fc47c9fa-44bf-4406-a5bc-f25907ba4996", - "x-ms-routing-request-id": "WESTUS2:20210519T185551Z:fc47c9fa-44bf-4406-a5bc-f25907ba4996" + "x-ms-correlation-request-id": "573d172d-cc44-45b3-9f90-5f5f7f81ed27", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "573d172d-cc44-45b3-9f90-5f5f7f81ed27", + "x-ms-routing-request-id": "WESTUS2:20210616T001356Z:573d172d-cc44-45b3-9f90-5f5f7f81ed27" }, "ResponseBody": [] }, @@ -344,7 +348,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -353,17 +357,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:52 GMT", + "Date": "Wed, 16 Jun 2021 00:13:57 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": "6219f92b-5962-4fd0-bb3d-8801bd2c63a3", - "x-ms-ratelimit-remaining-subscription-reads": "11466", - "x-ms-request-id": "6219f92b-5962-4fd0-bb3d-8801bd2c63a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185552Z:6219f92b-5962-4fd0-bb3d-8801bd2c63a3" + "x-ms-correlation-request-id": "07ef943e-4781-4a52-9178-d9fa7096f5c5", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "07ef943e-4781-4a52-9178-d9fa7096f5c5", + "x-ms-routing-request-id": "WESTUS2:20210616T001357Z:07ef943e-4781-4a52-9178-d9fa7096f5c5" }, "ResponseBody": [] }, @@ -372,7 +376,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -381,17 +385,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:53 GMT", + "Date": "Wed, 16 Jun 2021 00:13:58 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": "05cce2e0-c742-4a98-9db5-f4c9c2c8d36e", - "x-ms-ratelimit-remaining-subscription-reads": "11464", - "x-ms-request-id": "05cce2e0-c742-4a98-9db5-f4c9c2c8d36e", - "x-ms-routing-request-id": "WESTUS2:20210519T185554Z:05cce2e0-c742-4a98-9db5-f4c9c2c8d36e" + "x-ms-correlation-request-id": "be6e834d-652f-4b5e-a867-79fff14326b8", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "be6e834d-652f-4b5e-a867-79fff14326b8", + "x-ms-routing-request-id": "WESTUS2:20210616T001358Z:be6e834d-652f-4b5e-a867-79fff14326b8" }, "ResponseBody": [] }, @@ -400,7 +404,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -409,17 +413,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:54 GMT", + "Date": "Wed, 16 Jun 2021 00:13:59 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": "6cfa32cf-ce4a-4332-bc1f-7bb8aada487e", - "x-ms-ratelimit-remaining-subscription-reads": "11462", - "x-ms-request-id": "6cfa32cf-ce4a-4332-bc1f-7bb8aada487e", - "x-ms-routing-request-id": "WESTUS2:20210519T185555Z:6cfa32cf-ce4a-4332-bc1f-7bb8aada487e" + "x-ms-correlation-request-id": "6328c64b-9f90-4d07-b572-457e3b138235", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "6328c64b-9f90-4d07-b572-457e3b138235", + "x-ms-routing-request-id": "WESTUS2:20210616T001359Z:6328c64b-9f90-4d07-b572-457e3b138235" }, "ResponseBody": [] }, @@ -428,7 +432,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -437,17 +441,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:55 GMT", + "Date": "Wed, 16 Jun 2021 00:14:00 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": "7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c", - "x-ms-ratelimit-remaining-subscription-reads": "11460", - "x-ms-request-id": "7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c", - "x-ms-routing-request-id": "WESTUS2:20210519T185556Z:7fdd1d3d-bfeb-4b1b-986d-892e9b5b2f9c" + "x-ms-correlation-request-id": "adab49b2-7b98-4e49-bda5-1dff3cfe5f6e", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "adab49b2-7b98-4e49-bda5-1dff3cfe5f6e", + "x-ms-routing-request-id": "WESTUS2:20210616T001400Z:adab49b2-7b98-4e49-bda5-1dff3cfe5f6e" }, "ResponseBody": [] }, @@ -456,7 +460,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -465,17 +469,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:56 GMT", + "Date": "Wed, 16 Jun 2021 00:14:01 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": "a13ea482-b990-4314-adaf-d31b1b5c9dc0", - "x-ms-ratelimit-remaining-subscription-reads": "11458", - "x-ms-request-id": "a13ea482-b990-4314-adaf-d31b1b5c9dc0", - "x-ms-routing-request-id": "WESTUS2:20210519T185557Z:a13ea482-b990-4314-adaf-d31b1b5c9dc0" + "x-ms-correlation-request-id": "e4e73754-bcf4-47b4-a4ff-4927a3ebe1e0", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "e4e73754-bcf4-47b4-a4ff-4927a3ebe1e0", + "x-ms-routing-request-id": "WESTUS2:20210616T001401Z:e4e73754-bcf4-47b4-a4ff-4927a3ebe1e0" }, "ResponseBody": [] }, @@ -484,7 +488,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -493,17 +497,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:57 GMT", + "Date": "Wed, 16 Jun 2021 00:14:02 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": "04f16734-7b7f-42d7-9c1a-9ad1364e1161", - "x-ms-ratelimit-remaining-subscription-reads": "11456", - "x-ms-request-id": "04f16734-7b7f-42d7-9c1a-9ad1364e1161", - "x-ms-routing-request-id": "WESTUS2:20210519T185558Z:04f16734-7b7f-42d7-9c1a-9ad1364e1161" + "x-ms-correlation-request-id": "fb11816d-e1a5-4f01-9b06-9a57dfe79728", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "fb11816d-e1a5-4f01-9b06-9a57dfe79728", + "x-ms-routing-request-id": "WESTUS2:20210616T001402Z:fb11816d-e1a5-4f01-9b06-9a57dfe79728" }, "ResponseBody": [] }, @@ -512,7 +516,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -521,17 +525,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:58 GMT", + "Date": "Wed, 16 Jun 2021 00:14:03 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": "f8deaea4-09d6-4fd7-b4d9-ab8ff4247225", - "x-ms-ratelimit-remaining-subscription-reads": "11454", - "x-ms-request-id": "f8deaea4-09d6-4fd7-b4d9-ab8ff4247225", - "x-ms-routing-request-id": "WESTUS2:20210519T185559Z:f8deaea4-09d6-4fd7-b4d9-ab8ff4247225" + "x-ms-correlation-request-id": "88c529a6-9b9d-4528-8dec-6b5131097eaf", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "88c529a6-9b9d-4528-8dec-6b5131097eaf", + "x-ms-routing-request-id": "WESTUS2:20210616T001404Z:88c529a6-9b9d-4528-8dec-6b5131097eaf" }, "ResponseBody": [] }, @@ -540,7 +544,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -549,17 +553,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:59 GMT", + "Date": "Wed, 16 Jun 2021 00:14:04 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": "83a7100f-12fb-403f-bc71-b73dee94953c", - "x-ms-ratelimit-remaining-subscription-reads": "11452", - "x-ms-request-id": "83a7100f-12fb-403f-bc71-b73dee94953c", - "x-ms-routing-request-id": "WESTUS2:20210519T185600Z:83a7100f-12fb-403f-bc71-b73dee94953c" + "x-ms-correlation-request-id": "82aef810-5618-417a-997d-d8c48f17b65a", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "82aef810-5618-417a-997d-d8c48f17b65a", + "x-ms-routing-request-id": "WESTUS2:20210616T001405Z:82aef810-5618-417a-997d-d8c48f17b65a" }, "ResponseBody": [] }, @@ -568,7 +572,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -577,17 +581,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:00 GMT", + "Date": "Wed, 16 Jun 2021 00:14:05 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": "5435a754-fb57-4249-a311-9f3a9458dd78", - "x-ms-ratelimit-remaining-subscription-reads": "11450", - "x-ms-request-id": "5435a754-fb57-4249-a311-9f3a9458dd78", - "x-ms-routing-request-id": "WESTUS2:20210519T185601Z:5435a754-fb57-4249-a311-9f3a9458dd78" + "x-ms-correlation-request-id": "78ccbf60-c470-4ecb-adbb-ceae989cb818", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "78ccbf60-c470-4ecb-adbb-ceae989cb818", + "x-ms-routing-request-id": "WESTUS2:20210616T001406Z:78ccbf60-c470-4ecb-adbb-ceae989cb818" }, "ResponseBody": [] }, @@ -596,7 +600,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -605,17 +609,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:01 GMT", + "Date": "Wed, 16 Jun 2021 00:14:06 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": "1a0fbdc6-e324-4263-b042-35548a59a1d5", - "x-ms-ratelimit-remaining-subscription-reads": "11448", - "x-ms-request-id": "1a0fbdc6-e324-4263-b042-35548a59a1d5", - "x-ms-routing-request-id": "WESTUS2:20210519T185602Z:1a0fbdc6-e324-4263-b042-35548a59a1d5" + "x-ms-correlation-request-id": "04774197-7b3e-4ea5-8a0d-df6b14e314d7", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "04774197-7b3e-4ea5-8a0d-df6b14e314d7", + "x-ms-routing-request-id": "WESTUS2:20210616T001407Z:04774197-7b3e-4ea5-8a0d-df6b14e314d7" }, "ResponseBody": [] }, @@ -624,7 +628,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -633,17 +637,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:02 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "51907eff-5d59-4dca-84ae-280ac509e860", - "x-ms-ratelimit-remaining-subscription-reads": "11446", - "x-ms-request-id": "51907eff-5d59-4dca-84ae-280ac509e860", - "x-ms-routing-request-id": "WESTUS2:20210519T185603Z:51907eff-5d59-4dca-84ae-280ac509e860" + "x-ms-correlation-request-id": "907d24d3-e044-4736-8eda-dfad3ee93b22", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "907d24d3-e044-4736-8eda-dfad3ee93b22", + "x-ms-routing-request-id": "WESTUS2:20210616T001408Z:907d24d3-e044-4736-8eda-dfad3ee93b22" }, "ResponseBody": [] }, @@ -652,7 +656,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -661,17 +665,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:03 GMT", + "Date": "Wed, 16 Jun 2021 00:14:08 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": "b77726b1-42e1-406a-82d5-dd76664f84a2", - "x-ms-ratelimit-remaining-subscription-reads": "11444", - "x-ms-request-id": "b77726b1-42e1-406a-82d5-dd76664f84a2", - "x-ms-routing-request-id": "WESTUS2:20210519T185604Z:b77726b1-42e1-406a-82d5-dd76664f84a2" + "x-ms-correlation-request-id": "461d7a8c-0065-4aa0-8324-80149ce0acd3", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "461d7a8c-0065-4aa0-8324-80149ce0acd3", + "x-ms-routing-request-id": "WESTUS2:20210616T001409Z:461d7a8c-0065-4aa0-8324-80149ce0acd3" }, "ResponseBody": [] }, @@ -680,7 +684,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -689,17 +693,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:04 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "40f2cf9a-9b18-4efb-98e3-1ff892576f60", - "x-ms-ratelimit-remaining-subscription-reads": "11442", - "x-ms-request-id": "40f2cf9a-9b18-4efb-98e3-1ff892576f60", - "x-ms-routing-request-id": "WESTUS2:20210519T185605Z:40f2cf9a-9b18-4efb-98e3-1ff892576f60" + "x-ms-correlation-request-id": "d728d8b0-3e5b-4ca7-9696-9f6e8558ca88", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "d728d8b0-3e5b-4ca7-9696-9f6e8558ca88", + "x-ms-routing-request-id": "WESTUS2:20210616T001410Z:d728d8b0-3e5b-4ca7-9696-9f6e8558ca88" }, "ResponseBody": [] }, @@ -708,7 +712,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -717,17 +721,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:05 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "c7198b05-0f9d-4abb-8999-54e1d49b2cb1", - "x-ms-ratelimit-remaining-subscription-reads": "11440", - "x-ms-request-id": "c7198b05-0f9d-4abb-8999-54e1d49b2cb1", - "x-ms-routing-request-id": "WESTUS2:20210519T185606Z:c7198b05-0f9d-4abb-8999-54e1d49b2cb1" + "x-ms-correlation-request-id": "821c1ab5-6f8c-4bb1-8999-ae4d4f6f0ee1", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "821c1ab5-6f8c-4bb1-8999-ae4d4f6f0ee1", + "x-ms-routing-request-id": "WESTUS2:20210616T001411Z:821c1ab5-6f8c-4bb1-8999-ae4d4f6f0ee1" }, "ResponseBody": [] }, @@ -736,7 +740,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -745,17 +749,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:06 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "0436797f-5c04-4214-84f6-4babbf27ba10", - "x-ms-ratelimit-remaining-subscription-reads": "11438", - "x-ms-request-id": "0436797f-5c04-4214-84f6-4babbf27ba10", - "x-ms-routing-request-id": "WESTUS2:20210519T185607Z:0436797f-5c04-4214-84f6-4babbf27ba10" + "x-ms-correlation-request-id": "3ccf5bbe-9627-4fe9-b61c-072fc1b752d3", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "3ccf5bbe-9627-4fe9-b61c-072fc1b752d3", + "x-ms-routing-request-id": "WESTUS2:20210616T001412Z:3ccf5bbe-9627-4fe9-b61c-072fc1b752d3" }, "ResponseBody": [] }, @@ -764,7 +768,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -773,17 +777,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:07 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "2f2a2374-16ca-4629-8316-e6fc3e296b74", - "x-ms-ratelimit-remaining-subscription-reads": "11436", - "x-ms-request-id": "2f2a2374-16ca-4629-8316-e6fc3e296b74", - "x-ms-routing-request-id": "WESTUS2:20210519T185608Z:2f2a2374-16ca-4629-8316-e6fc3e296b74" + "x-ms-correlation-request-id": "5d45e5e8-77b8-471d-80d2-707371409497", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "5d45e5e8-77b8-471d-80d2-707371409497", + "x-ms-routing-request-id": "WESTUS2:20210616T001413Z:5d45e5e8-77b8-471d-80d2-707371409497" }, "ResponseBody": [] }, @@ -792,7 +796,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -801,17 +805,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:08 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "933f576b-5ae9-41aa-b996-c81a342f784f", - "x-ms-ratelimit-remaining-subscription-reads": "11434", - "x-ms-request-id": "933f576b-5ae9-41aa-b996-c81a342f784f", - "x-ms-routing-request-id": "WESTUS2:20210519T185609Z:933f576b-5ae9-41aa-b996-c81a342f784f" + "x-ms-correlation-request-id": "abf162fb-7be0-4e07-847c-02d189a95562", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "abf162fb-7be0-4e07-847c-02d189a95562", + "x-ms-routing-request-id": "WESTUS2:20210616T001414Z:abf162fb-7be0-4e07-847c-02d189a95562" }, "ResponseBody": [] }, @@ -820,7 +824,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -829,17 +833,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:09 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "9f8ff494-681a-44ee-bc78-f427cd061b62", - "x-ms-ratelimit-remaining-subscription-reads": "11432", - "x-ms-request-id": "9f8ff494-681a-44ee-bc78-f427cd061b62", - "x-ms-routing-request-id": "WESTUS2:20210519T185610Z:9f8ff494-681a-44ee-bc78-f427cd061b62" + "x-ms-correlation-request-id": "6aa5d95e-94ba-4137-aa0f-c3da444e34d0", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "6aa5d95e-94ba-4137-aa0f-c3da444e34d0", + "x-ms-routing-request-id": "WESTUS2:20210616T001415Z:6aa5d95e-94ba-4137-aa0f-c3da444e34d0" }, "ResponseBody": [] }, @@ -848,7 +852,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -857,17 +861,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:10 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "43aae968-c635-4302-84ce-0922b845988b", - "x-ms-ratelimit-remaining-subscription-reads": "11430", - "x-ms-request-id": "43aae968-c635-4302-84ce-0922b845988b", - "x-ms-routing-request-id": "WESTUS2:20210519T185611Z:43aae968-c635-4302-84ce-0922b845988b" + "x-ms-correlation-request-id": "95c972eb-5985-4c41-a0d6-414692e8e753", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "95c972eb-5985-4c41-a0d6-414692e8e753", + "x-ms-routing-request-id": "WESTUS2:20210616T001416Z:95c972eb-5985-4c41-a0d6-414692e8e753" }, "ResponseBody": [] }, @@ -876,7 +880,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -885,17 +889,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:11 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "9fcb711c-11c2-47cc-b136-d0f339d91f4a", - "x-ms-ratelimit-remaining-subscription-reads": "11428", - "x-ms-request-id": "9fcb711c-11c2-47cc-b136-d0f339d91f4a", - "x-ms-routing-request-id": "WESTUS2:20210519T185612Z:9fcb711c-11c2-47cc-b136-d0f339d91f4a" + "x-ms-correlation-request-id": "d775dccb-c9c4-4f48-9c88-0042eccc2085", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "d775dccb-c9c4-4f48-9c88-0042eccc2085", + "x-ms-routing-request-id": "WESTUS2:20210616T001417Z:d775dccb-c9c4-4f48-9c88-0042eccc2085" }, "ResponseBody": [] }, @@ -904,7 +908,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -913,17 +917,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:12 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "3c410c2c-56e1-46c1-a463-848493c4e16f", - "x-ms-ratelimit-remaining-subscription-reads": "11426", - "x-ms-request-id": "3c410c2c-56e1-46c1-a463-848493c4e16f", - "x-ms-routing-request-id": "WESTUS2:20210519T185613Z:3c410c2c-56e1-46c1-a463-848493c4e16f" + "x-ms-correlation-request-id": "f2c0bd2e-e286-4907-8ef7-06ded4ba42e9", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "f2c0bd2e-e286-4907-8ef7-06ded4ba42e9", + "x-ms-routing-request-id": "WESTUS2:20210616T001418Z:f2c0bd2e-e286-4907-8ef7-06ded4ba42e9" }, "ResponseBody": [] }, @@ -932,7 +936,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -941,17 +945,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:13 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "3c6e3cfb-2d74-44cc-83a0-96fe771eefef", - "x-ms-ratelimit-remaining-subscription-reads": "11424", - "x-ms-request-id": "3c6e3cfb-2d74-44cc-83a0-96fe771eefef", - "x-ms-routing-request-id": "WESTUS2:20210519T185614Z:3c6e3cfb-2d74-44cc-83a0-96fe771eefef" + "x-ms-correlation-request-id": "9f4400b0-1e37-4529-bae7-eab6c8bdfa19", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "9f4400b0-1e37-4529-bae7-eab6c8bdfa19", + "x-ms-routing-request-id": "WESTUS2:20210616T001419Z:9f4400b0-1e37-4529-bae7-eab6c8bdfa19" }, "ResponseBody": [] }, @@ -960,24 +964,80 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:14: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": "3ad296d2-783b-495b-bf0b-5477dabe0337", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "3ad296d2-783b-495b-bf0b-5477dabe0337", + "x-ms-routing-request-id": "WESTUS2:20210616T001420Z:3ad296d2-783b-495b-bf0b-5477dabe0337" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:14: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": "4616ed01-8906-459c-82e0-11fdfbed6ec1", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "4616ed01-8906-459c-82e0-11fdfbed6ec1", + "x-ms-routing-request-id": "WESTUS2:20210616T001421Z:4616ed01-8906-459c-82e0-11fdfbed6ec1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkcxMTI0LVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "65b6ac4bf90ff8a77097142aff307864", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:14 GMT", + "Date": "Wed, 16 Jun 2021 00:14:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3324500a-4637-4518-b78f-ad877678091b", - "x-ms-ratelimit-remaining-subscription-reads": "11422", - "x-ms-request-id": "3324500a-4637-4518-b78f-ad877678091b", - "x-ms-routing-request-id": "WESTUS2:20210519T185615Z:3324500a-4637-4518-b78f-ad877678091b" + "x-ms-correlation-request-id": "5ca8d547-4311-4b3d-b43b-b78c7a86f5ab", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "5ca8d547-4311-4b3d-b43b-b78c7a86f5ab", + "x-ms-routing-request-id": "WESTUS2:20210616T001422Z:5ca8d547-4311-4b3d-b43b-b78c7a86f5ab" }, "ResponseBody": [] } 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 7530467ffb04..5acc7a9c3efb 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.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:43 GMT", + "Date": "Wed, 16 Jun 2021 00:13:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24346344-1504-4142-a67e-8b4faa7dfc9f", - "x-ms-ratelimit-remaining-subscription-reads": "11484", - "x-ms-request-id": "24346344-1504-4142-a67e-8b4faa7dfc9f", - "x-ms-routing-request-id": "WESTUS2:20210519T185543Z:24346344-1504-4142-a67e-8b4faa7dfc9f" + "x-ms-correlation-request-id": "d34fc8ce-8bda-4029-a65b-f17d35149abc", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d34fc8ce-8bda-4029-a65b-f17d35149abc", + "x-ms-routing-request-id": "WESTUS2:20210616T001348Z:d34fc8ce-8bda-4029-a65b-f17d35149abc" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6ebf6f093183db4bbef9808b1a382f39-24b132976eff8f4d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-746c0be9e0437d4f8aa1523b6a248f25-1568048057c6a64f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:55:43 GMT", + "Date": "Wed, 16 Jun 2021 00:13:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d32491a8-8edb-4a52-8696-08e7422d8c18", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "d32491a8-8edb-4a52-8696-08e7422d8c18", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:d32491a8-8edb-4a52-8696-08e7422d8c18" + "x-ms-correlation-request-id": "4985de6e-cabc-4491-90ff-f679f2a1c8fb", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "4985de6e-cabc-4491-90ff-f679f2a1c8fb", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:4985de6e-cabc-4491-90ff-f679f2a1c8fb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9243", @@ -90,8 +94,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-314534141502204b90bc176b1b7ec971-7d24f6bbb71f0441-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5702e5343293304b920ddb1af7ee622e-1837584111ff8644-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -100,17 +104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:44 GMT", + "Date": "Wed, 16 Jun 2021 00:13:48 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": "e16a0750-c40e-4b12-b810-285cad23c464", - "x-ms-ratelimit-remaining-subscription-deletes": "14983", - "x-ms-request-id": "e16a0750-c40e-4b12-b810-285cad23c464", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:e16a0750-c40e-4b12-b810-285cad23c464" + "x-ms-correlation-request-id": "a2094710-c467-4839-84ef-26bc67fac104", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "a2094710-c467-4839-84ef-26bc67fac104", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:a2094710-c467-4839-84ef-26bc67fac104" }, "ResponseBody": [] }, @@ -119,8 +123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-264c8a0a3881804cb810511790b87de6-940e96a62966f640-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -129,17 +132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:44 GMT", + "Date": "Wed, 16 Jun 2021 00:13:48 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": "84e41da8-d272-488f-848e-1eeda39ecfa4", - "x-ms-ratelimit-remaining-subscription-reads": "11483", - "x-ms-request-id": "84e41da8-d272-488f-848e-1eeda39ecfa4", - "x-ms-routing-request-id": "WESTUS2:20210519T185544Z:84e41da8-d272-488f-848e-1eeda39ecfa4" + "x-ms-correlation-request-id": "cc739fe9-7782-453c-8539-cb34249366fb", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "cc739fe9-7782-453c-8539-cb34249366fb", + "x-ms-routing-request-id": "WESTUS2:20210616T001349Z:cc739fe9-7782-453c-8539-cb34249366fb" }, "ResponseBody": [] }, @@ -148,7 +151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -157,17 +160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:45 GMT", + "Date": "Wed, 16 Jun 2021 00:13:50 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": "eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa", - "x-ms-ratelimit-remaining-subscription-reads": "11481", - "x-ms-request-id": "eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa", - "x-ms-routing-request-id": "WESTUS2:20210519T185545Z:eb0d91c9-06c9-4075-b5ea-fbc6394fc3fa" + "x-ms-correlation-request-id": "4bf1e9b7-fa1c-4041-9268-deac644004a1", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "4bf1e9b7-fa1c-4041-9268-deac644004a1", + "x-ms-routing-request-id": "WESTUS2:20210616T001350Z:4bf1e9b7-fa1c-4041-9268-deac644004a1" }, "ResponseBody": [] }, @@ -176,7 +179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -185,17 +188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:46 GMT", + "Date": "Wed, 16 Jun 2021 00:13:51 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": "862889e2-022d-4c5a-bcc9-6c638b970be2", - "x-ms-ratelimit-remaining-subscription-reads": "11479", - "x-ms-request-id": "862889e2-022d-4c5a-bcc9-6c638b970be2", - "x-ms-routing-request-id": "WESTUS2:20210519T185546Z:862889e2-022d-4c5a-bcc9-6c638b970be2" + "x-ms-correlation-request-id": "10a49dbb-0684-46a3-b515-65307ff5a948", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "10a49dbb-0684-46a3-b515-65307ff5a948", + "x-ms-routing-request-id": "WESTUS2:20210616T001351Z:10a49dbb-0684-46a3-b515-65307ff5a948" }, "ResponseBody": [] }, @@ -204,7 +207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -213,17 +216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:47 GMT", + "Date": "Wed, 16 Jun 2021 00:13:52 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": "e49f45d5-36ef-4cd7-a589-20176a726801", - "x-ms-ratelimit-remaining-subscription-reads": "11477", - "x-ms-request-id": "e49f45d5-36ef-4cd7-a589-20176a726801", - "x-ms-routing-request-id": "WESTUS2:20210519T185547Z:e49f45d5-36ef-4cd7-a589-20176a726801" + "x-ms-correlation-request-id": "c1361654-0252-4bf4-874c-f53d733d089e", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "c1361654-0252-4bf4-874c-f53d733d089e", + "x-ms-routing-request-id": "WESTUS2:20210616T001352Z:c1361654-0252-4bf4-874c-f53d733d089e" }, "ResponseBody": [] }, @@ -232,7 +235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -241,17 +244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:48 GMT", + "Date": "Wed, 16 Jun 2021 00:13:53 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": "7c100e3b-8b06-4b0d-b678-8944c2c094f8", - "x-ms-ratelimit-remaining-subscription-reads": "11475", - "x-ms-request-id": "7c100e3b-8b06-4b0d-b678-8944c2c094f8", - "x-ms-routing-request-id": "WESTUS2:20210519T185548Z:7c100e3b-8b06-4b0d-b678-8944c2c094f8" + "x-ms-correlation-request-id": "789e84f3-a8c4-4f1d-acfe-626a0d7774a6", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "789e84f3-a8c4-4f1d-acfe-626a0d7774a6", + "x-ms-routing-request-id": "WESTUS2:20210616T001353Z:789e84f3-a8c4-4f1d-acfe-626a0d7774a6" }, "ResponseBody": [] }, @@ -260,7 +263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -269,17 +272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:49 GMT", + "Date": "Wed, 16 Jun 2021 00:13:54 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": "a851bd77-99f1-4e01-b066-798efa9bdc5f", - "x-ms-ratelimit-remaining-subscription-reads": "11473", - "x-ms-request-id": "a851bd77-99f1-4e01-b066-798efa9bdc5f", - "x-ms-routing-request-id": "WESTUS2:20210519T185549Z:a851bd77-99f1-4e01-b066-798efa9bdc5f" + "x-ms-correlation-request-id": "8d616a7d-e06a-4667-8bd8-93a00817e457", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "8d616a7d-e06a-4667-8bd8-93a00817e457", + "x-ms-routing-request-id": "WESTUS2:20210616T001354Z:8d616a7d-e06a-4667-8bd8-93a00817e457" }, "ResponseBody": [] }, @@ -288,7 +291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -297,17 +300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:50 GMT", + "Date": "Wed, 16 Jun 2021 00:13:55 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": "4a696903-a036-47ba-950e-761085a5fb52", - "x-ms-ratelimit-remaining-subscription-reads": "11471", - "x-ms-request-id": "4a696903-a036-47ba-950e-761085a5fb52", - "x-ms-routing-request-id": "WESTUS2:20210519T185550Z:4a696903-a036-47ba-950e-761085a5fb52" + "x-ms-correlation-request-id": "33f8302a-b5e9-44ce-874d-8517bec51a5e", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "33f8302a-b5e9-44ce-874d-8517bec51a5e", + "x-ms-routing-request-id": "WESTUS2:20210616T001355Z:33f8302a-b5e9-44ce-874d-8517bec51a5e" }, "ResponseBody": [] }, @@ -316,7 +319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -325,17 +328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:51 GMT", + "Date": "Wed, 16 Jun 2021 00:13:56 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": "a9cd52bd-1b1d-4ff4-86da-2103333e3af5", - "x-ms-ratelimit-remaining-subscription-reads": "11469", - "x-ms-request-id": "a9cd52bd-1b1d-4ff4-86da-2103333e3af5", - "x-ms-routing-request-id": "WESTUS2:20210519T185551Z:a9cd52bd-1b1d-4ff4-86da-2103333e3af5" + "x-ms-correlation-request-id": "aa46b18d-ca48-4d94-a3f4-df84e9578049", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "aa46b18d-ca48-4d94-a3f4-df84e9578049", + "x-ms-routing-request-id": "WESTUS2:20210616T001356Z:aa46b18d-ca48-4d94-a3f4-df84e9578049" }, "ResponseBody": [] }, @@ -344,7 +347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -353,17 +356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:52 GMT", + "Date": "Wed, 16 Jun 2021 00:13:57 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": "afc8529c-11f3-4876-aee6-f53f567bfefc", - "x-ms-ratelimit-remaining-subscription-reads": "11467", - "x-ms-request-id": "afc8529c-11f3-4876-aee6-f53f567bfefc", - "x-ms-routing-request-id": "WESTUS2:20210519T185552Z:afc8529c-11f3-4876-aee6-f53f567bfefc" + "x-ms-correlation-request-id": "b5026745-cd35-449a-9a0f-c68487403a53", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "b5026745-cd35-449a-9a0f-c68487403a53", + "x-ms-routing-request-id": "WESTUS2:20210616T001357Z:b5026745-cd35-449a-9a0f-c68487403a53" }, "ResponseBody": [] }, @@ -372,7 +375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -381,17 +384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:53 GMT", + "Date": "Wed, 16 Jun 2021 00:13:58 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": "a8310960-1de4-43bf-bcfd-36cda6363c74", - "x-ms-ratelimit-remaining-subscription-reads": "11465", - "x-ms-request-id": "a8310960-1de4-43bf-bcfd-36cda6363c74", - "x-ms-routing-request-id": "WESTUS2:20210519T185553Z:a8310960-1de4-43bf-bcfd-36cda6363c74" + "x-ms-correlation-request-id": "9addedcf-0e07-487b-a81c-6be9e5821fea", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "9addedcf-0e07-487b-a81c-6be9e5821fea", + "x-ms-routing-request-id": "WESTUS2:20210616T001358Z:9addedcf-0e07-487b-a81c-6be9e5821fea" }, "ResponseBody": [] }, @@ -400,7 +403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -409,17 +412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:54 GMT", + "Date": "Wed, 16 Jun 2021 00:13:59 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": "6aef45e2-f5f7-48aa-95d3-fccea9f1d516", - "x-ms-ratelimit-remaining-subscription-reads": "11463", - "x-ms-request-id": "6aef45e2-f5f7-48aa-95d3-fccea9f1d516", - "x-ms-routing-request-id": "WESTUS2:20210519T185554Z:6aef45e2-f5f7-48aa-95d3-fccea9f1d516" + "x-ms-correlation-request-id": "4417fe4d-a35d-4ddf-bee8-84166a9ad853", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "4417fe4d-a35d-4ddf-bee8-84166a9ad853", + "x-ms-routing-request-id": "WESTUS2:20210616T001359Z:4417fe4d-a35d-4ddf-bee8-84166a9ad853" }, "ResponseBody": [] }, @@ -428,7 +431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -437,17 +440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:55 GMT", + "Date": "Wed, 16 Jun 2021 00:14:00 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": "06ba15d4-9d79-441d-bbdf-a759a7e0da9a", - "x-ms-ratelimit-remaining-subscription-reads": "11461", - "x-ms-request-id": "06ba15d4-9d79-441d-bbdf-a759a7e0da9a", - "x-ms-routing-request-id": "WESTUS2:20210519T185555Z:06ba15d4-9d79-441d-bbdf-a759a7e0da9a" + "x-ms-correlation-request-id": "13febd9a-2cbc-443c-8e26-bd0309aec594", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "13febd9a-2cbc-443c-8e26-bd0309aec594", + "x-ms-routing-request-id": "WESTUS2:20210616T001401Z:13febd9a-2cbc-443c-8e26-bd0309aec594" }, "ResponseBody": [] }, @@ -456,7 +459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -465,17 +468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:56 GMT", + "Date": "Wed, 16 Jun 2021 00:14:01 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": "674dbbd2-ade4-40cb-8313-73c43f46ad23", - "x-ms-ratelimit-remaining-subscription-reads": "11459", - "x-ms-request-id": "674dbbd2-ade4-40cb-8313-73c43f46ad23", - "x-ms-routing-request-id": "WESTUS2:20210519T185556Z:674dbbd2-ade4-40cb-8313-73c43f46ad23" + "x-ms-correlation-request-id": "d95d0bf1-58fa-451a-8951-4537effedab4", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "d95d0bf1-58fa-451a-8951-4537effedab4", + "x-ms-routing-request-id": "WESTUS2:20210616T001402Z:d95d0bf1-58fa-451a-8951-4537effedab4" }, "ResponseBody": [] }, @@ -484,7 +487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -493,17 +496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:57 GMT", + "Date": "Wed, 16 Jun 2021 00:14:02 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": "396b8ae7-76d0-41c8-a89e-6b565f9078b2", - "x-ms-ratelimit-remaining-subscription-reads": "11457", - "x-ms-request-id": "396b8ae7-76d0-41c8-a89e-6b565f9078b2", - "x-ms-routing-request-id": "WESTUS2:20210519T185557Z:396b8ae7-76d0-41c8-a89e-6b565f9078b2" + "x-ms-correlation-request-id": "ddf08871-18ca-46d2-879a-872205a44a18", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "ddf08871-18ca-46d2-879a-872205a44a18", + "x-ms-routing-request-id": "WESTUS2:20210616T001403Z:ddf08871-18ca-46d2-879a-872205a44a18" }, "ResponseBody": [] }, @@ -512,7 +515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -521,17 +524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:58 GMT", + "Date": "Wed, 16 Jun 2021 00:14:03 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": "7fd5805a-0cf1-41d0-ae97-2a08a793c794", - "x-ms-ratelimit-remaining-subscription-reads": "11455", - "x-ms-request-id": "7fd5805a-0cf1-41d0-ae97-2a08a793c794", - "x-ms-routing-request-id": "WESTUS2:20210519T185558Z:7fd5805a-0cf1-41d0-ae97-2a08a793c794" + "x-ms-correlation-request-id": "dde3fadd-8fd5-4575-950b-28985a791238", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "dde3fadd-8fd5-4575-950b-28985a791238", + "x-ms-routing-request-id": "WESTUS2:20210616T001404Z:dde3fadd-8fd5-4575-950b-28985a791238" }, "ResponseBody": [] }, @@ -540,7 +543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -549,17 +552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:55:59 GMT", + "Date": "Wed, 16 Jun 2021 00:14:04 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": "66a9a3b7-8c2a-4396-a626-d19c713755e6", - "x-ms-ratelimit-remaining-subscription-reads": "11453", - "x-ms-request-id": "66a9a3b7-8c2a-4396-a626-d19c713755e6", - "x-ms-routing-request-id": "WESTUS2:20210519T185600Z:66a9a3b7-8c2a-4396-a626-d19c713755e6" + "x-ms-correlation-request-id": "f78ca060-102f-4923-9ebe-5f2aa5be633c", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "f78ca060-102f-4923-9ebe-5f2aa5be633c", + "x-ms-routing-request-id": "WESTUS2:20210616T001405Z:f78ca060-102f-4923-9ebe-5f2aa5be633c" }, "ResponseBody": [] }, @@ -568,7 +571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -577,17 +580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:00 GMT", + "Date": "Wed, 16 Jun 2021 00:14:05 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": "f383888a-0434-4f9a-b1ad-cc12e5765170", - "x-ms-ratelimit-remaining-subscription-reads": "11451", - "x-ms-request-id": "f383888a-0434-4f9a-b1ad-cc12e5765170", - "x-ms-routing-request-id": "WESTUS2:20210519T185601Z:f383888a-0434-4f9a-b1ad-cc12e5765170" + "x-ms-correlation-request-id": "8a31325d-ccdb-4f38-8dbb-01cf0e5aec36", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "8a31325d-ccdb-4f38-8dbb-01cf0e5aec36", + "x-ms-routing-request-id": "WESTUS2:20210616T001406Z:8a31325d-ccdb-4f38-8dbb-01cf0e5aec36" }, "ResponseBody": [] }, @@ -596,7 +599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -605,17 +608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:01 GMT", + "Date": "Wed, 16 Jun 2021 00:14:06 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": "988b0b71-3b2c-4803-b235-7ad21d08fb7f", - "x-ms-ratelimit-remaining-subscription-reads": "11449", - "x-ms-request-id": "988b0b71-3b2c-4803-b235-7ad21d08fb7f", - "x-ms-routing-request-id": "WESTUS2:20210519T185602Z:988b0b71-3b2c-4803-b235-7ad21d08fb7f" + "x-ms-correlation-request-id": "5e50c590-82b8-4680-9c86-3bfb84357365", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "5e50c590-82b8-4680-9c86-3bfb84357365", + "x-ms-routing-request-id": "WESTUS2:20210616T001407Z:5e50c590-82b8-4680-9c86-3bfb84357365" }, "ResponseBody": [] }, @@ -624,7 +627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -633,17 +636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:02 GMT", + "Date": "Wed, 16 Jun 2021 00:14:07 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": "017b4467-4bef-4fa7-9551-644ccf28610e", - "x-ms-ratelimit-remaining-subscription-reads": "11447", - "x-ms-request-id": "017b4467-4bef-4fa7-9551-644ccf28610e", - "x-ms-routing-request-id": "WESTUS2:20210519T185603Z:017b4467-4bef-4fa7-9551-644ccf28610e" + "x-ms-correlation-request-id": "48365e8b-4b1a-41a2-afd3-d9de8517a32c", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "48365e8b-4b1a-41a2-afd3-d9de8517a32c", + "x-ms-routing-request-id": "WESTUS2:20210616T001408Z:48365e8b-4b1a-41a2-afd3-d9de8517a32c" }, "ResponseBody": [] }, @@ -652,7 +655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -661,17 +664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:03 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "fec1e77c-26e3-400d-a091-340f5178328f", - "x-ms-ratelimit-remaining-subscription-reads": "11445", - "x-ms-request-id": "fec1e77c-26e3-400d-a091-340f5178328f", - "x-ms-routing-request-id": "WESTUS2:20210519T185604Z:fec1e77c-26e3-400d-a091-340f5178328f" + "x-ms-correlation-request-id": "e6a63038-06c6-4b67-83c8-ef2d16ab5069", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "e6a63038-06c6-4b67-83c8-ef2d16ab5069", + "x-ms-routing-request-id": "WESTUS2:20210616T001409Z:e6a63038-06c6-4b67-83c8-ef2d16ab5069" }, "ResponseBody": [] }, @@ -680,7 +683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -689,17 +692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:04 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "9d1b6540-802c-41ac-828e-a49c6ead4157", - "x-ms-ratelimit-remaining-subscription-reads": "11443", - "x-ms-request-id": "9d1b6540-802c-41ac-828e-a49c6ead4157", - "x-ms-routing-request-id": "WESTUS2:20210519T185605Z:9d1b6540-802c-41ac-828e-a49c6ead4157" + "x-ms-correlation-request-id": "4b1892a7-5648-4df5-ad07-61ebfd6bdba7", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "4b1892a7-5648-4df5-ad07-61ebfd6bdba7", + "x-ms-routing-request-id": "WESTUS2:20210616T001410Z:4b1892a7-5648-4df5-ad07-61ebfd6bdba7" }, "ResponseBody": [] }, @@ -708,7 +711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -717,17 +720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:05 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "4798e974-d7d4-4121-8598-f96832e4a4dc", - "x-ms-ratelimit-remaining-subscription-reads": "11441", - "x-ms-request-id": "4798e974-d7d4-4121-8598-f96832e4a4dc", - "x-ms-routing-request-id": "WESTUS2:20210519T185606Z:4798e974-d7d4-4121-8598-f96832e4a4dc" + "x-ms-correlation-request-id": "cd5bb5c8-8eea-4cfd-b115-147f6dbf63b7", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "cd5bb5c8-8eea-4cfd-b115-147f6dbf63b7", + "x-ms-routing-request-id": "WESTUS2:20210616T001411Z:cd5bb5c8-8eea-4cfd-b115-147f6dbf63b7" }, "ResponseBody": [] }, @@ -736,7 +739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -745,17 +748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:06 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "acdd8f4e-d303-4431-bdb1-1055c6f761a9", - "x-ms-ratelimit-remaining-subscription-reads": "11439", - "x-ms-request-id": "acdd8f4e-d303-4431-bdb1-1055c6f761a9", - "x-ms-routing-request-id": "WESTUS2:20210519T185607Z:acdd8f4e-d303-4431-bdb1-1055c6f761a9" + "x-ms-correlation-request-id": "436b1208-52f9-4cc5-9b62-134bc752c16e", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "436b1208-52f9-4cc5-9b62-134bc752c16e", + "x-ms-routing-request-id": "WESTUS2:20210616T001412Z:436b1208-52f9-4cc5-9b62-134bc752c16e" }, "ResponseBody": [] }, @@ -764,7 +767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -773,17 +776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:07 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "5b5cd5aa-f80d-43ee-8f4d-076df5ac04af", - "x-ms-ratelimit-remaining-subscription-reads": "11437", - "x-ms-request-id": "5b5cd5aa-f80d-43ee-8f4d-076df5ac04af", - "x-ms-routing-request-id": "WESTUS2:20210519T185608Z:5b5cd5aa-f80d-43ee-8f4d-076df5ac04af" + "x-ms-correlation-request-id": "4e0b5cc6-771f-40de-8083-12f7d5512d7c", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "4e0b5cc6-771f-40de-8083-12f7d5512d7c", + "x-ms-routing-request-id": "WESTUS2:20210616T001413Z:4e0b5cc6-771f-40de-8083-12f7d5512d7c" }, "ResponseBody": [] }, @@ -792,7 +795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -801,17 +804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:08 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "bf834054-84cb-4ead-b8c4-fede3a361bf1", - "x-ms-ratelimit-remaining-subscription-reads": "11435", - "x-ms-request-id": "bf834054-84cb-4ead-b8c4-fede3a361bf1", - "x-ms-routing-request-id": "WESTUS2:20210519T185609Z:bf834054-84cb-4ead-b8c4-fede3a361bf1" + "x-ms-correlation-request-id": "8beba1e5-0454-4ccd-8cfc-1f582f709bc4", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "8beba1e5-0454-4ccd-8cfc-1f582f709bc4", + "x-ms-routing-request-id": "WESTUS2:20210616T001414Z:8beba1e5-0454-4ccd-8cfc-1f582f709bc4" }, "ResponseBody": [] }, @@ -820,7 +823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -829,17 +832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:09 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "1f93740a-0608-4665-b569-21acca75d6f8", - "x-ms-ratelimit-remaining-subscription-reads": "11433", - "x-ms-request-id": "1f93740a-0608-4665-b569-21acca75d6f8", - "x-ms-routing-request-id": "WESTUS2:20210519T185610Z:1f93740a-0608-4665-b569-21acca75d6f8" + "x-ms-correlation-request-id": "3ed5a946-218e-4c80-9ecc-b2427c7468f6", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "3ed5a946-218e-4c80-9ecc-b2427c7468f6", + "x-ms-routing-request-id": "WESTUS2:20210616T001415Z:3ed5a946-218e-4c80-9ecc-b2427c7468f6" }, "ResponseBody": [] }, @@ -848,7 +851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -857,17 +860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:10 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "19b60160-bf12-435f-8cda-01121d2b2948", - "x-ms-ratelimit-remaining-subscription-reads": "11431", - "x-ms-request-id": "19b60160-bf12-435f-8cda-01121d2b2948", - "x-ms-routing-request-id": "WESTUS2:20210519T185611Z:19b60160-bf12-435f-8cda-01121d2b2948" + "x-ms-correlation-request-id": "d1a49770-ffca-4249-a00d-c7fc6613800d", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "d1a49770-ffca-4249-a00d-c7fc6613800d", + "x-ms-routing-request-id": "WESTUS2:20210616T001416Z:d1a49770-ffca-4249-a00d-c7fc6613800d" }, "ResponseBody": [] }, @@ -876,7 +879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -885,17 +888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:11 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "454d2489-e844-4079-a1b8-9e29a71d6125", - "x-ms-ratelimit-remaining-subscription-reads": "11429", - "x-ms-request-id": "454d2489-e844-4079-a1b8-9e29a71d6125", - "x-ms-routing-request-id": "WESTUS2:20210519T185612Z:454d2489-e844-4079-a1b8-9e29a71d6125" + "x-ms-correlation-request-id": "0b4e7520-bab4-48ec-8e28-7fe175aac3d4", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "0b4e7520-bab4-48ec-8e28-7fe175aac3d4", + "x-ms-routing-request-id": "WESTUS2:20210616T001417Z:0b4e7520-bab4-48ec-8e28-7fe175aac3d4" }, "ResponseBody": [] }, @@ -904,7 +907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -913,17 +916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:12 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "d6e8c528-3160-4a7a-875c-fa4cd0299122", - "x-ms-ratelimit-remaining-subscription-reads": "11427", - "x-ms-request-id": "d6e8c528-3160-4a7a-875c-fa4cd0299122", - "x-ms-routing-request-id": "WESTUS2:20210519T185613Z:d6e8c528-3160-4a7a-875c-fa4cd0299122" + "x-ms-correlation-request-id": "aff4be1c-740c-4846-b926-9c9f05ffdd9c", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "aff4be1c-740c-4846-b926-9c9f05ffdd9c", + "x-ms-routing-request-id": "WESTUS2:20210616T001418Z:aff4be1c-740c-4846-b926-9c9f05ffdd9c" }, "ResponseBody": [] }, @@ -932,7 +935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, @@ -941,17 +944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:13 GMT", + "Date": "Wed, 16 Jun 2021 00:14: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": "940d2d7c-15de-444d-8a54-1c26074ff454", - "x-ms-ratelimit-remaining-subscription-reads": "11425", - "x-ms-request-id": "940d2d7c-15de-444d-8a54-1c26074ff454", - "x-ms-routing-request-id": "WESTUS2:20210519T185614Z:940d2d7c-15de-444d-8a54-1c26074ff454" + "x-ms-correlation-request-id": "50ec1629-3079-4eb5-bb64-0c3bd5cc2728", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "50ec1629-3079-4eb5-bb64-0c3bd5cc2728", + "x-ms-routing-request-id": "WESTUS2:20210616T001419Z:50ec1629-3079-4eb5-bb64-0c3bd5cc2728" }, "ResponseBody": [] }, @@ -960,53 +963,24 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.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" }, "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56: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": "c0c904a4-cca8-41b1-9b9b-afe71699305e", - "x-ms-ratelimit-remaining-subscription-reads": "11423", - "x-ms-request-id": "c0c904a4-cca8-41b1-9b9b-afe71699305e", - "x-ms-routing-request-id": "WESTUS2:20210519T185615Z:c0c904a4-cca8-41b1-9b9b-afe71699305e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1URVNUUkc5MjQzLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-9747a22eca7490459d9b22ae94976168-fd3fd80d63590048-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.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" - }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:15 GMT", + "Date": "Wed, 16 Jun 2021 00:14:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24545274-1542-4ac6-b6ae-5eee74d0818e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "24545274-1542-4ac6-b6ae-5eee74d0818e", - "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:24545274-1542-4ac6-b6ae-5eee74d0818e" + "x-ms-correlation-request-id": "9cafe92c-608d-4b57-b6fc-8a4f95fa7c60", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "9cafe92c-608d-4b57-b6fc-8a4f95fa7c60", + "x-ms-routing-request-id": "WESTUS2:20210616T001420Z:9cafe92c-608d-4b57-b6fc-8a4f95fa7c60" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json index 137441fb946f..5bf799cb6a96 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32a6fdffa409e85e54962abd9f4da428", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:15 GMT", + "Date": "Wed, 16 Jun 2021 00:26:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24866039-bdb2-42a8-85db-73393e545795", - "x-ms-ratelimit-remaining-subscription-reads": "11419", - "x-ms-request-id": "24866039-bdb2-42a8-85db-73393e545795", - "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:24866039-bdb2-42a8-85db-73393e545795" + "x-ms-correlation-request-id": "4ed437cc-25e8-4189-bf88-a9ab969eaff7", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "4ed437cc-25e8-4189-bf88-a9ab969eaff7", + "x-ms-routing-request-id": "WESTUS2:20210616T002613Z:4ed437cc-25e8-4189-bf88-a9ab969eaff7" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-54d6eee8d34b75488e5f74133d7ed097-62a0b2544d0f2b4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-bfd4eb002bb0124ba617f172b115713f-9d8de6825d6f4b4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b790c2f14b89997a170d4863d6892d", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:16 GMT", + "Date": "Wed, 16 Jun 2021 00:26:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32d56a13-2c7e-4e7c-bff2-9586efce96c7", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "32d56a13-2c7e-4e7c-bff2-9586efce96c7", - "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:32d56a13-2c7e-4e7c-bff2-9586efce96c7" + "x-ms-correlation-request-id": "ddd533c0-9503-4009-800f-1deab70f46fc", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "ddd533c0-9503-4009-800f-1deab70f46fc", + "x-ms-routing-request-id": "WESTUS2:20210616T002614Z:ddd533c0-9503-4009-800f-1deab70f46fc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1347", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "19", "Content-Type": "application/json", - "traceparent": "00-6b7bb641bc1a1e47bb5ea0be4f0312c7-6c23eaed394af941-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4b2b250c45db924f97a374be9a17335f-ee84dd20550e5f46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "594eecb68e34fce18b82be33459d882a", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "179", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:16 GMT", + "Date": "Wed, 16 Jun 2021 00:26:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ecd79da-b492-41b8-9bd3-208b8a2fb606", - "x-ms-ratelimit-remaining-subscription-reads": "11418", - "x-ms-request-id": "5ecd79da-b492-41b8-9bd3-208b8a2fb606", - "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:5ecd79da-b492-41b8-9bd3-208b8a2fb606" + "x-ms-correlation-request-id": "7ee82d20-dae8-4a84-b8e3-770e51338440", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "7ee82d20-dae8-4a84-b8e3-770e51338440", + "x-ms-routing-request-id": "WESTUS2:20210616T002614Z:7ee82d20-dae8-4a84-b8e3-770e51338440" }, "ResponseBody": { "template": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json index ab113d8a53cb..b5ef4a97e1bc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartExportTemplate()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1aebadd69bdc074d8f468ccb315ab6b2-938c6964403d3e40-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fee38b4babbfcaed8d6e0de49334574", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:16 GMT", + "Date": "Wed, 16 Jun 2021 00:26:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42d1b315-c48b-4a80-877b-439900a6ac05", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "42d1b315-c48b-4a80-877b-439900a6ac05", - "x-ms-routing-request-id": "WESTUS2:20210519T185616Z:42d1b315-c48b-4a80-877b-439900a6ac05" + "x-ms-correlation-request-id": "19f9694d-3ac6-4603-b9cc-b2705f10ba8b", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "19f9694d-3ac6-4603-b9cc-b2705f10ba8b", + "x-ms-routing-request-id": "WESTUS2:20210616T002613Z:19f9694d-3ac6-4603-b9cc-b2705f10ba8b" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5a1bc55c510eeb41bb3017ebad7ef316-94073c587db95b4f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9293af15f4a40544bb005daf7001323a-7aa5904901508e44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "173239ec56adb4fe4f511ef05d6e531a", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:16 GMT", + "Date": "Wed, 16 Jun 2021 00:26:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ee88cae-b970-4d1a-997e-95b03d360b08", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "3ee88cae-b970-4d1a-997e-95b03d360b08", - "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:3ee88cae-b970-4d1a-997e-95b03d360b08" + "x-ms-correlation-request-id": "4c3c0026-7e47-4d4c-a00c-9c4e41962b8e", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "4c3c0026-7e47-4d4c-a00c-9c4e41962b8e", + "x-ms-routing-request-id": "WESTUS2:20210616T002614Z:4c3c0026-7e47-4d4c-a00c-9c4e41962b8e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7061", @@ -93,8 +96,7 @@ "Authorization": "Sanitized", "Content-Length": "19", "Content-Type": "application/json", - "traceparent": "00-1cb9b683c1179a44baffa17785b75200-0163a97ee4658648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e11aade18050faea4503f6ac6e148b6", "x-ms-return-client-request-id": "true" }, @@ -108,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "179", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:17 GMT", + "Date": "Wed, 16 Jun 2021 00:26:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e811081-7fc1-4a35-882b-c4192a15e4c0", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "4e811081-7fc1-4a35-882b-c4192a15e4c0", - "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:4e811081-7fc1-4a35-882b-c4192a15e4c0" + "x-ms-correlation-request-id": "3ecc82d0-2f48-4f09-a58d-4bb3b98a1d07", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "3ecc82d0-2f48-4f09-a58d-4bb3b98a1d07", + "x-ms-routing-request-id": "WESTUS2:20210616T002615Z:3ecc82d0-2f48-4f09-a58d-4bb3b98a1d07" }, "ResponseBody": { "template": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json index aa7bdced6a58..583f9d93c01d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-87baaa27e038584fae9ada7ed6dd4146-ef035c6f58f9dc4f-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-621eca38d919b4439be6110362ab75e5-e9a2bc804ae5f34b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91d70e0a7788948f7e0fc9fc5dbbc1e1", "x-ms-return-client-request-id": "true" }, @@ -15,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:16 GMT", + "Date": "Wed, 16 Jun 2021 00:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe7293da-1e94-4df2-8591-d243a72fa2cd", - "x-ms-ratelimit-remaining-subscription-reads": "11415", - "x-ms-request-id": "fe7293da-1e94-4df2-8591-d243a72fa2cd", - "x-ms-routing-request-id": "WESTUS2:20210519T185617Z:fe7293da-1e94-4df2-8591-d243a72fa2cd" + "x-ms-correlation-request-id": "4a6ad7c0-0047-4dd0-88d7-13c971ca3acf", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "4a6ad7c0-0047-4dd0-88d7-13c971ca3acf", + "x-ms-routing-request-id": "WESTUS2:20210616T000152Z:4a6ad7c0-0047-4dd0-88d7-13c971ca3acf" }, "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", @@ -50,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-298c13928780b84abce630067fac20c5-98b5ee246d833347-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1bc05623bdc61f46af811e32bf89efc0-b748947f7fdb1142-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8bbda83f96d7a9c5cdc082bd6987308", "x-ms-return-client-request-id": "true" }, @@ -64,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:17 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4ce34b2-c64b-4746-b2ed-3bc46685a161", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "b4ce34b2-c64b-4746-b2ed-3bc46685a161", - "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:b4ce34b2-c64b-4746-b2ed-3bc46685a161" + "x-ms-correlation-request-id": "b38161f0-3204-4ff4-9d78-a60291cf35f0", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "b38161f0-3204-4ff4-9d78-a60291cf35f0", + "x-ms-routing-request-id": "WESTUS2:20210616T000153Z:b38161f0-3204-4ff4-9d78-a60291cf35f0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294", @@ -93,8 +97,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3812967b372c9241a61e48896347c747-8508eb409886704f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c0b149d7fc247d4f9aeeb0a196b3422e-96801be9b5baf04a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81a2762e1bff00918680e4b79f3f0711", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:17 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d197ac6a-77ca-4a21-b516-4b310865c4d7", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "d197ac6a-77ca-4a21-b516-4b310865c4d7", - "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:d197ac6a-77ca-4a21-b516-4b310865c4d7" + "x-ms-correlation-request-id": "bb3f5e50-0d91-49f7-af3f-109b594c7b2b", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "bb3f5e50-0d91-49f7-af3f-109b594c7b2b", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:bb3f5e50-0d91-49f7-af3f-109b594c7b2b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481", @@ -134,7 +138,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a75be14797a62468670a5b0ab8d6ca4-45f3b55c3f69724c-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "878b943c159d163b2c9b8769a77656f4", "x-ms-return-client-request-id": "true" @@ -143,17 +146,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:17 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc239a53-d986-40a5-897c-ac6c439ba115", - "x-ms-ratelimit-remaining-subscription-reads": "11414", - "x-ms-request-id": "cc239a53-d986-40a5-897c-ac6c439ba115", - "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:cc239a53-d986-40a5-897c-ac6c439ba115" + "x-ms-correlation-request-id": "7b8b1ea3-87a2-48ec-b359-dcb28517eef8", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "7b8b1ea3-87a2-48ec-b359-dcb28517eef8", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:7b8b1ea3-87a2-48ec-b359-dcb28517eef8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -233,9 +236,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -306,9 +311,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -474,6 +481,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -521,9 +536,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -594,9 +611,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -763,6 +782,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -810,9 +837,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -884,9 +913,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -958,9 +989,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1031,9 +1064,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1106,9 +1141,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1181,9 +1218,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1212,6 +1251,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1267,9 +1307,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1340,9 +1382,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1412,9 +1456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1475,9 +1521,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1547,9 +1595,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1612,9 +1662,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1677,9 +1729,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1750,9 +1804,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1815,7 +1871,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1858,9 +1915,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1912,9 +1971,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1965,9 +2026,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2017,9 +2080,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2064,6 +2129,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2107,9 +2173,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2153,9 +2221,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2199,9 +2269,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2385,9 +2457,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2433,9 +2507,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2481,9 +2557,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2529,9 +2607,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2577,9 +2657,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2625,9 +2707,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2785,6 +2869,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2832,9 +2924,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2897,9 +2991,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2961,9 +3057,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3010,9 +3108,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3057,7 +3157,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3197,6 +3298,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3244,7 +3353,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3289,7 +3399,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3334,7 +3445,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3378,7 +3490,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3422,7 +3535,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3466,7 +3580,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3510,7 +3625,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3554,7 +3670,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3598,9 +3715,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3664,9 +3783,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3716,9 +3837,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3861,6 +3984,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3908,9 +4039,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4053,6 +4186,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4070,15 +4211,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294/providers/Microsoft.Compute/availabilitySets/test-aset5192?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294/providers/Microsoft.Compute/availabilitySets/test-aset5192?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-1a75be14797a62468670a5b0ab8d6ca4-9166befbbaeb874a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "Request-Id": "|281dd4e8-411af037d68e2542.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e4b8c5784632abfe7e679b8c3bd9c01", "x-ms-return-client-request-id": "true" }, @@ -4098,7 +4239,7 @@ "Cache-Control": "no-cache", "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4108,11 +4249,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "3e4b8c5784632abfe7e679b8c3bd9c01", - "x-ms-correlation-request-id": "9a9dc947-42b7-42c8-b918-dfc202db7498", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "db945764-3dfe-41ba-9f07-76ae71ad073d", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:9a9dc947-42b7-42c8-b918-dfc202db7498" + "x-ms-correlation-request-id": "923d68e6-076e-4b9c-a8df-502fad27aca9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1134", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "b8e6779b-bb59-4e28-b7cb-002d59fd4e55", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:923d68e6-076e-4b9c-a8df-502fad27aca9" }, "ResponseBody": [ "{\r\n", @@ -4137,8 +4278,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3477d3caa1d1964ea3759f47ab88078b-ef904e75a6ea4948-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b247c38ed3bbb88dd5619fb69b82526f", "x-ms-return-client-request-id": "true" }, @@ -4148,15 +4288,15 @@ "Cache-Control": "no-cache", "Content-Length": "279", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b615d100-b60a-44db-b9bc-5b5f0d97cd29", - "x-ms-ratelimit-remaining-subscription-reads": "11413", - "x-ms-request-id": "b615d100-b60a-44db-b9bc-5b5f0d97cd29", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:b615d100-b60a-44db-b9bc-5b5f0d97cd29" + "x-ms-correlation-request-id": "abf537e7-e8be-4651-945a-e8348e8bf869", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "abf537e7-e8be-4651-945a-e8348e8bf869", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:abf537e7-e8be-4651-945a-e8348e8bf869" }, "ResponseBody": { "value": [ @@ -4179,8 +4319,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-016ae6c70d4f4f4d847f9e88224c410d-1c69c44329af3847-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c25085fe771ad977fbead7f8b13f1f4f", "x-ms-return-client-request-id": "true" }, @@ -4190,15 +4329,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe", - "x-ms-ratelimit-remaining-subscription-reads": "11412", - "x-ms-request-id": "1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:1f9cf8de-af7b-4b8d-8a9f-5fea9490d3fe" + "x-ms-correlation-request-id": "e41d5bbf-d2b3-4a20-9daa-9a1ac1eda386", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "e41d5bbf-d2b3-4a20-9daa-9a1ac1eda386", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:e41d5bbf-d2b3-4a20-9daa-9a1ac1eda386" }, "ResponseBody": { "value": [] @@ -4212,8 +4351,8 @@ "Authorization": "Sanitized", "Content-Length": "255", "Content-Type": "application/json", - "traceparent": "00-e2510bdbe8fea048b5248c4c85b9d92a-b1f32f9463a34943-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-28ffcaac3c0a944e97144812bd45efc9-194db44f03fcff41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "002a6f08ea75464657a4091bdedbc5e4", "x-ms-return-client-request-id": "true" }, @@ -4227,17 +4366,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "05f3bea9-f959-48de-9a18-304592e6371e", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "05f3bea9-f959-48de-9a18-304592e6371e", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:05f3bea9-f959-48de-9a18-304592e6371e" + "x-ms-correlation-request-id": "83877cf6-9bf8-4f68-b534-6bc7083585ff", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "83877cf6-9bf8-4f68-b534-6bc7083585ff", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:83877cf6-9bf8-4f68-b534-6bc7083585ff" }, "ResponseBody": [] }, @@ -4246,7 +4385,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bad4f42525814f93f0a6b756e5bfa20", "x-ms-return-client-request-id": "true" }, @@ -4255,17 +4394,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1afc527d-1746-429b-9778-afe25780ecc2", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "1afc527d-1746-429b-9778-afe25780ecc2", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:1afc527d-1746-429b-9778-afe25780ecc2" + "x-ms-correlation-request-id": "34287091-68ba-45d5-9df3-009a1bfd11b5", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "34287091-68ba-45d5-9df3-009a1bfd11b5", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:34287091-68ba-45d5-9df3-009a1bfd11b5" }, "ResponseBody": [] }, @@ -4274,7 +4413,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ddff32599bdec088013b40732754ac2", "x-ms-return-client-request-id": "true" }, @@ -4283,17 +4422,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7d535ecc-559d-41fd-b48e-9d331208f135", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "7d535ecc-559d-41fd-b48e-9d331208f135", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:7d535ecc-559d-41fd-b48e-9d331208f135" + "x-ms-correlation-request-id": "2ff2c817-7488-4aae-a2f6-aca3292384f9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "2ff2c817-7488-4aae-a2f6-aca3292384f9", + "x-ms-routing-request-id": "WESTUS2:20210616T000156Z:2ff2c817-7488-4aae-a2f6-aca3292384f9" }, "ResponseBody": [] }, @@ -4302,7 +4441,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ed9729d992dc68b6a6d463db07aa8ef", "x-ms-return-client-request-id": "true" }, @@ -4311,17 +4450,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:20 GMT", + "Date": "Wed, 16 Jun 2021 00:01:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e07af682-d091-442c-9983-be33ff109e1b", - "x-ms-ratelimit-remaining-subscription-reads": "11407", - "x-ms-request-id": "e07af682-d091-442c-9983-be33ff109e1b", - "x-ms-routing-request-id": "WESTUS2:20210519T185621Z:e07af682-d091-442c-9983-be33ff109e1b" + "x-ms-correlation-request-id": "e992cdd8-d6ea-451d-8953-ba971a912cb7", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "e992cdd8-d6ea-451d-8953-ba971a912cb7", + "x-ms-routing-request-id": "WESTUS2:20210616T000157Z:e992cdd8-d6ea-451d-8953-ba971a912cb7" }, "ResponseBody": [] }, @@ -4330,7 +4469,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08ab9773b9b5a8d847c1ab459df1e1c9", "x-ms-return-client-request-id": "true" }, @@ -4339,17 +4478,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:21 GMT", + "Date": "Wed, 16 Jun 2021 00:01:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "950d992a-33df-47b1-a0fd-ba72bc4e8361", - "x-ms-ratelimit-remaining-subscription-reads": "11405", - "x-ms-request-id": "950d992a-33df-47b1-a0fd-ba72bc4e8361", - "x-ms-routing-request-id": "WESTUS2:20210519T185622Z:950d992a-33df-47b1-a0fd-ba72bc4e8361" + "x-ms-correlation-request-id": "7933b9de-c65a-4c6d-b287-d57be164ff68", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "7933b9de-c65a-4c6d-b287-d57be164ff68", + "x-ms-routing-request-id": "WESTUS2:20210616T000158Z:7933b9de-c65a-4c6d-b287-d57be164ff68" }, "ResponseBody": [] }, @@ -4358,7 +4497,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbd7a9bf6b828bf36719e25053cb3b06", "x-ms-return-client-request-id": "true" }, @@ -4366,19 +4505,18 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:22 GMT", + "Date": "Wed, 16 Jun 2021 00:01:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "174b63d9-71de-4a48-ab2b-849331072409", - "x-ms-ratelimit-remaining-subscription-reads": "11403", - "x-ms-request-id": "174b63d9-71de-4a48-ab2b-849331072409", - "x-ms-routing-request-id": "WESTUS2:20210519T185623Z:174b63d9-71de-4a48-ab2b-849331072409" + "x-ms-correlation-request-id": "c688f35d-85ed-4bcc-8f08-0e7ac964011b", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "c688f35d-85ed-4bcc-8f08-0e7ac964011b", + "x-ms-routing-request-id": "WESTUS2:20210616T000200Z:c688f35d-85ed-4bcc-8f08-0e7ac964011b" }, "ResponseBody": [] }, @@ -4387,7 +4525,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9b94c46a42cae30c9931476bee462879", "x-ms-return-client-request-id": "true" }, @@ -4396,17 +4534,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:23 GMT", + "Date": "Wed, 16 Jun 2021 00:02:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9bcf5d2c-e272-4f2a-9581-404d0a4812e6", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "9bcf5d2c-e272-4f2a-9581-404d0a4812e6", - "x-ms-routing-request-id": "WESTUS2:20210519T185624Z:9bcf5d2c-e272-4f2a-9581-404d0a4812e6" + "x-ms-correlation-request-id": "32622b20-ca77-4ef9-bdb4-0332447f8df1", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "32622b20-ca77-4ef9-bdb4-0332447f8df1", + "x-ms-routing-request-id": "WESTUS2:20210616T000201Z:32622b20-ca77-4ef9-bdb4-0332447f8df1" }, "ResponseBody": [] }, @@ -4415,7 +4553,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "077d7d8baca2086da41fa09cd788547b", "x-ms-return-client-request-id": "true" }, @@ -4424,17 +4562,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:24 GMT", + "Date": "Wed, 16 Jun 2021 00:02:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9c3d0016-3815-45c0-85b6-05ab08928351", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "9c3d0016-3815-45c0-85b6-05ab08928351", - "x-ms-routing-request-id": "WESTUS2:20210519T185625Z:9c3d0016-3815-45c0-85b6-05ab08928351" + "x-ms-correlation-request-id": "a98fdef7-b5bf-4733-8ab3-216d4d1fd789", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "a98fdef7-b5bf-4733-8ab3-216d4d1fd789", + "x-ms-routing-request-id": "WESTUS2:20210616T000202Z:a98fdef7-b5bf-4733-8ab3-216d4d1fd789" }, "ResponseBody": [] }, @@ -4443,7 +4581,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d8daa585465d7dfe9cf3625124879d21", "x-ms-return-client-request-id": "true" }, @@ -4452,17 +4590,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:25 GMT", + "Date": "Wed, 16 Jun 2021 00:02:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ea2cf554-593f-4ad5-a074-783d1c6d260b", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "ea2cf554-593f-4ad5-a074-783d1c6d260b", - "x-ms-routing-request-id": "WESTUS2:20210519T185626Z:ea2cf554-593f-4ad5-a074-783d1c6d260b" + "x-ms-correlation-request-id": "5fb39007-3aac-41f5-85da-cef436e314b6", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "5fb39007-3aac-41f5-85da-cef436e314b6", + "x-ms-routing-request-id": "WESTUS2:20210616T000203Z:5fb39007-3aac-41f5-85da-cef436e314b6" }, "ResponseBody": [] }, @@ -4471,7 +4609,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6c468f0334ebe63578cf7aba1700c10", "x-ms-return-client-request-id": "true" }, @@ -4480,17 +4618,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:26 GMT", + "Date": "Wed, 16 Jun 2021 00:02:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4", - "x-ms-routing-request-id": "WESTUS2:20210519T185627Z:9b6656f0-13ff-4637-a1fa-5a5e4a8ee3e4" + "x-ms-correlation-request-id": "a647babd-38c8-46b1-a904-ca50a8dfe6b1", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "a647babd-38c8-46b1-a904-ca50a8dfe6b1", + "x-ms-routing-request-id": "WESTUS2:20210616T000204Z:a647babd-38c8-46b1-a904-ca50a8dfe6b1" }, "ResponseBody": [] }, @@ -4499,7 +4637,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48e5cbdc506b451c7eff6bae4a1ce31c", "x-ms-return-client-request-id": "true" }, @@ -4508,17 +4646,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:27 GMT", + "Date": "Wed, 16 Jun 2021 00:02:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "20278497-410a-465c-a458-cf892f548867", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "20278497-410a-465c-a458-cf892f548867", - "x-ms-routing-request-id": "WESTUS2:20210519T185628Z:20278497-410a-465c-a458-cf892f548867" + "x-ms-correlation-request-id": "b3849f02-b2f8-4edd-a76f-d2fddae4f7a6", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "b3849f02-b2f8-4edd-a76f-d2fddae4f7a6", + "x-ms-routing-request-id": "WESTUS2:20210616T000205Z:b3849f02-b2f8-4edd-a76f-d2fddae4f7a6" }, "ResponseBody": [] }, @@ -4527,7 +4665,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6eab7f827ec4522d411c81d14e53dc2c", "x-ms-return-client-request-id": "true" }, @@ -4536,17 +4674,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:28 GMT", + "Date": "Wed, 16 Jun 2021 00:02:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "591f0394-936a-480f-bf93-90ed9470ee02", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "591f0394-936a-480f-bf93-90ed9470ee02", - "x-ms-routing-request-id": "WESTUS2:20210519T185629Z:591f0394-936a-480f-bf93-90ed9470ee02" + "x-ms-correlation-request-id": "c79a15cb-ba5d-4b9b-8140-3cea87bfac00", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "c79a15cb-ba5d-4b9b-8140-3cea87bfac00", + "x-ms-routing-request-id": "WESTUS2:20210616T000206Z:c79a15cb-ba5d-4b9b-8140-3cea87bfac00" }, "ResponseBody": [] }, @@ -4555,7 +4693,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "587451e754a1a0b54c7e574ec8b5743a", "x-ms-return-client-request-id": "true" }, @@ -4564,17 +4702,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:29 GMT", + "Date": "Wed, 16 Jun 2021 00:02:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "85df691f-460e-4706-81ff-701a7df345a1", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "85df691f-460e-4706-81ff-701a7df345a1", - "x-ms-routing-request-id": "WESTUS2:20210519T185630Z:85df691f-460e-4706-81ff-701a7df345a1" + "x-ms-correlation-request-id": "e6a5e91f-9752-4183-9ee1-221ac2735681", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "e6a5e91f-9752-4183-9ee1-221ac2735681", + "x-ms-routing-request-id": "WESTUS2:20210616T000207Z:e6a5e91f-9752-4183-9ee1-221ac2735681" }, "ResponseBody": [] }, @@ -4583,7 +4721,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2129daa89dc55e4c9d93074fce4bf62b", "x-ms-return-client-request-id": "true" }, @@ -4592,17 +4730,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:30 GMT", + "Date": "Wed, 16 Jun 2021 00:02:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "362dd495-a668-4ece-ae6f-9a9516a0edaf", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "362dd495-a668-4ece-ae6f-9a9516a0edaf", - "x-ms-routing-request-id": "WESTUS2:20210519T185631Z:362dd495-a668-4ece-ae6f-9a9516a0edaf" + "x-ms-correlation-request-id": "d4c656cb-9d90-4946-8827-04825993903b", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "d4c656cb-9d90-4946-8827-04825993903b", + "x-ms-routing-request-id": "WESTUS2:20210616T000208Z:d4c656cb-9d90-4946-8827-04825993903b" }, "ResponseBody": [] }, @@ -4611,7 +4749,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8c63e238ba82d7ac90a224526df898b", "x-ms-return-client-request-id": "true" }, @@ -4620,17 +4758,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:31 GMT", + "Date": "Wed, 16 Jun 2021 00:02:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "55558cbb-0a44-4bc2-b189-07907c153d9d", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "55558cbb-0a44-4bc2-b189-07907c153d9d", - "x-ms-routing-request-id": "WESTUS2:20210519T185632Z:55558cbb-0a44-4bc2-b189-07907c153d9d" + "x-ms-correlation-request-id": "35d8758a-07c9-4d86-8389-88dbb81c025e", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "35d8758a-07c9-4d86-8389-88dbb81c025e", + "x-ms-routing-request-id": "WESTUS2:20210616T000209Z:35d8758a-07c9-4d86-8389-88dbb81c025e" }, "ResponseBody": [] }, @@ -4639,7 +4777,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "732946a8ba2a49670516ba0e4d66d201", "x-ms-return-client-request-id": "true" }, @@ -4648,17 +4786,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:33 GMT", + "Date": "Wed, 16 Jun 2021 00:02:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a7cafae7-010c-4556-9b5e-9f9a448ee961", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "a7cafae7-010c-4556-9b5e-9f9a448ee961", - "x-ms-routing-request-id": "WESTUS2:20210519T185633Z:a7cafae7-010c-4556-9b5e-9f9a448ee961" + "x-ms-correlation-request-id": "e33a0e3c-91e4-4d2b-b4d5-f6d200fbaa72", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "e33a0e3c-91e4-4d2b-b4d5-f6d200fbaa72", + "x-ms-routing-request-id": "WESTUS2:20210616T000210Z:e33a0e3c-91e4-4d2b-b4d5-f6d200fbaa72" }, "ResponseBody": [] }, @@ -4667,7 +4805,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "892a2c887bee1c9260fb57ba7b0638be", "x-ms-return-client-request-id": "true" }, @@ -4676,17 +4814,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:34 GMT", + "Date": "Wed, 16 Jun 2021 00:02:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7339381d-9752-45f3-9985-e52ebb86f1dd", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "7339381d-9752-45f3-9985-e52ebb86f1dd", - "x-ms-routing-request-id": "WESTUS2:20210519T185634Z:7339381d-9752-45f3-9985-e52ebb86f1dd" + "x-ms-correlation-request-id": "a06273f4-d9b6-435a-8920-3b13a07892fe", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "a06273f4-d9b6-435a-8920-3b13a07892fe", + "x-ms-routing-request-id": "WESTUS2:20210616T000211Z:a06273f4-d9b6-435a-8920-3b13a07892fe" }, "ResponseBody": [] }, @@ -4695,7 +4833,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87a67b0a82226801d77df391d06cdf63", "x-ms-return-client-request-id": "true" }, @@ -4704,17 +4842,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:35 GMT", + "Date": "Wed, 16 Jun 2021 00:02:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3", - "x-ms-routing-request-id": "WESTUS2:20210519T185635Z:e3fb2af6-4667-4fe7-8a6e-dc472cb17bd3" + "x-ms-correlation-request-id": "d544b0ed-168e-41aa-86ed-1bb33c5275c7", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "d544b0ed-168e-41aa-86ed-1bb33c5275c7", + "x-ms-routing-request-id": "WESTUS2:20210616T000212Z:d544b0ed-168e-41aa-86ed-1bb33c5275c7" }, "ResponseBody": [] }, @@ -4723,7 +4861,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9bd2038ffb42c9cb40c132e63accdfe", "x-ms-return-client-request-id": "true" }, @@ -4732,17 +4870,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:36 GMT", + "Date": "Wed, 16 Jun 2021 00:02:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c397cc51-bbcc-4489-a7dd-3054eed614a7", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "c397cc51-bbcc-4489-a7dd-3054eed614a7", - "x-ms-routing-request-id": "WESTUS2:20210519T185637Z:c397cc51-bbcc-4489-a7dd-3054eed614a7" + "x-ms-correlation-request-id": "91d99879-d7ab-4f04-8a75-a6c260a63623", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "91d99879-d7ab-4f04-8a75-a6c260a63623", + "x-ms-routing-request-id": "WESTUS2:20210616T000213Z:91d99879-d7ab-4f04-8a75-a6c260a63623" }, "ResponseBody": [] }, @@ -4751,7 +4889,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d203fcdd4ac005df2bc1b27188004cf3", "x-ms-return-client-request-id": "true" }, @@ -4760,17 +4898,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:37 GMT", + "Date": "Wed, 16 Jun 2021 00:02:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d16df782-d639-4899-9916-15cd85ff6204", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "d16df782-d639-4899-9916-15cd85ff6204", - "x-ms-routing-request-id": "WESTUS2:20210519T185638Z:d16df782-d639-4899-9916-15cd85ff6204" + "x-ms-correlation-request-id": "0b1c4254-f6b0-48c8-9c23-21da3e009470", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "0b1c4254-f6b0-48c8-9c23-21da3e009470", + "x-ms-routing-request-id": "WESTUS2:20210616T000214Z:0b1c4254-f6b0-48c8-9c23-21da3e009470" }, "ResponseBody": [] }, @@ -4779,7 +4917,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b81f41c3e490b09de79d3156fd2052a", "x-ms-return-client-request-id": "true" }, @@ -4788,17 +4926,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:38 GMT", + "Date": "Wed, 16 Jun 2021 00:02:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842", - "x-ms-routing-request-id": "WESTUS2:20210519T185639Z:ca8543ff-a7a0-4c2a-bf1e-2d0dfa2a4842" + "x-ms-correlation-request-id": "48f7ab27-606f-4144-99f9-004156af1272", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "48f7ab27-606f-4144-99f9-004156af1272", + "x-ms-routing-request-id": "WESTUS2:20210616T000215Z:48f7ab27-606f-4144-99f9-004156af1272" }, "ResponseBody": [] }, @@ -4807,7 +4945,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3b3f4af0d69eea341b7cef24c2ba4b3", "x-ms-return-client-request-id": "true" }, @@ -4816,17 +4954,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:39 GMT", + "Date": "Wed, 16 Jun 2021 00:02:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "df0e726d-495c-4536-ab57-d85f8e5029d2", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "df0e726d-495c-4536-ab57-d85f8e5029d2", - "x-ms-routing-request-id": "WESTUS2:20210519T185640Z:df0e726d-495c-4536-ab57-d85f8e5029d2" + "x-ms-correlation-request-id": "e6fca5f4-e3ae-4dcf-b4cb-a251dad3fb44", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "e6fca5f4-e3ae-4dcf-b4cb-a251dad3fb44", + "x-ms-routing-request-id": "WESTUS2:20210616T000216Z:e6fca5f4-e3ae-4dcf-b4cb-a251dad3fb44" }, "ResponseBody": [] }, @@ -4835,7 +4973,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e121fbf722a9fb4f3f8f34677c99658", "x-ms-return-client-request-id": "true" }, @@ -4844,17 +4982,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:41 GMT", + "Date": "Wed, 16 Jun 2021 00:02:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fcf10c61-8500-4d41-8cfe-d8bef21d0e25", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "fcf10c61-8500-4d41-8cfe-d8bef21d0e25", - "x-ms-routing-request-id": "WESTUS2:20210519T185641Z:fcf10c61-8500-4d41-8cfe-d8bef21d0e25" + "x-ms-correlation-request-id": "b7336679-50e1-4aa8-b21b-469d548a8b43", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "b7336679-50e1-4aa8-b21b-469d548a8b43", + "x-ms-routing-request-id": "WESTUS2:20210616T000217Z:b7336679-50e1-4aa8-b21b-469d548a8b43" }, "ResponseBody": [] }, @@ -4863,7 +5001,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "93c187bc784c0f8a519319916f16beb3", "x-ms-return-client-request-id": "true" }, @@ -4872,17 +5010,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:42 GMT", + "Date": "Wed, 16 Jun 2021 00:02:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f80dca8b-b6ed-4b8d-afbb-3591a149dd99", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "f80dca8b-b6ed-4b8d-afbb-3591a149dd99", - "x-ms-routing-request-id": "WESTUS2:20210519T185642Z:f80dca8b-b6ed-4b8d-afbb-3591a149dd99" + "x-ms-correlation-request-id": "1dc08cd9-fea5-400c-886b-c7d2455cfd90", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "1dc08cd9-fea5-400c-886b-c7d2455cfd90", + "x-ms-routing-request-id": "WESTUS2:20210616T000218Z:1dc08cd9-fea5-400c-886b-c7d2455cfd90" }, "ResponseBody": [] }, @@ -4891,7 +5029,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f561fd596c03d004014e070195c7678", "x-ms-return-client-request-id": "true" }, @@ -4900,17 +5038,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:43 GMT", + "Date": "Wed, 16 Jun 2021 00:02:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7fd23903-eca3-4592-84e2-dd1b1d8f1e8a", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "7fd23903-eca3-4592-84e2-dd1b1d8f1e8a", - "x-ms-routing-request-id": "WESTUS2:20210519T185643Z:7fd23903-eca3-4592-84e2-dd1b1d8f1e8a" + "x-ms-correlation-request-id": "08e7e412-ad35-4065-bf0e-1a758e6c5c1f", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "08e7e412-ad35-4065-bf0e-1a758e6c5c1f", + "x-ms-routing-request-id": "WESTUS2:20210616T000219Z:08e7e412-ad35-4065-bf0e-1a758e6c5c1f" }, "ResponseBody": [] }, @@ -4919,7 +5057,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c53675211069476695031d9759222fdc", "x-ms-return-client-request-id": "true" }, @@ -4928,17 +5066,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:44 GMT", + "Date": "Wed, 16 Jun 2021 00:02:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e7ae2442-f1b0-40fd-98d6-90dee74f4a2d", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "e7ae2442-f1b0-40fd-98d6-90dee74f4a2d", - "x-ms-routing-request-id": "WESTUS2:20210519T185644Z:e7ae2442-f1b0-40fd-98d6-90dee74f4a2d" + "x-ms-correlation-request-id": "7d381e3a-32ff-496f-afe1-7778cae148c7", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "7d381e3a-32ff-496f-afe1-7778cae148c7", + "x-ms-routing-request-id": "WESTUS2:20210616T000220Z:7d381e3a-32ff-496f-afe1-7778cae148c7" }, "ResponseBody": [] }, @@ -4947,7 +5085,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5770403a4673259887845338971af5f4", "x-ms-return-client-request-id": "true" }, @@ -4956,17 +5094,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:45 GMT", + "Date": "Wed, 16 Jun 2021 00:02:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed", - "x-ms-routing-request-id": "WESTUS2:20210519T185645Z:1fbc9fa2-c0b7-4f8b-8cfa-01850d1069ed" + "x-ms-correlation-request-id": "031f8f33-1ce6-43cf-ba86-17c55fba3901", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "031f8f33-1ce6-43cf-ba86-17c55fba3901", + "x-ms-routing-request-id": "WESTUS2:20210616T000221Z:031f8f33-1ce6-43cf-ba86-17c55fba3901" }, "ResponseBody": [] }, @@ -4975,7 +5113,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fa70a11cf8dfc549b80ebabd7868e41d", "x-ms-return-client-request-id": "true" }, @@ -4984,17 +5122,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:46 GMT", + "Date": "Wed, 16 Jun 2021 00:02:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "db68fb5b-20a0-4384-be89-4ba3c4d8166c", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "db68fb5b-20a0-4384-be89-4ba3c4d8166c", - "x-ms-routing-request-id": "WESTUS2:20210519T185646Z:db68fb5b-20a0-4384-be89-4ba3c4d8166c" + "x-ms-correlation-request-id": "b3505138-640d-4787-847f-1cf156e37849", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "b3505138-640d-4787-847f-1cf156e37849", + "x-ms-routing-request-id": "WESTUS2:20210616T000222Z:b3505138-640d-4787-847f-1cf156e37849" }, "ResponseBody": [] }, @@ -5003,7 +5141,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d83604e41fecdb05dd103ee4bc2eaf7a", "x-ms-return-client-request-id": "true" }, @@ -5012,17 +5150,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:47 GMT", + "Date": "Wed, 16 Jun 2021 00:02:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5bfcd309-53a8-468e-86be-db63df970607", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "5bfcd309-53a8-468e-86be-db63df970607", - "x-ms-routing-request-id": "WESTUS2:20210519T185647Z:5bfcd309-53a8-468e-86be-db63df970607" + "x-ms-correlation-request-id": "c969d287-6557-45b4-9645-5b10e19c87fa", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "c969d287-6557-45b4-9645-5b10e19c87fa", + "x-ms-routing-request-id": "WESTUS2:20210616T000223Z:c969d287-6557-45b4-9645-5b10e19c87fa" }, "ResponseBody": [] }, @@ -5031,7 +5169,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b77a290d35b241fcf6ab9e648cdaac1e", "x-ms-return-client-request-id": "true" }, @@ -5040,17 +5178,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:48 GMT", + "Date": "Wed, 16 Jun 2021 00:02:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "36496481-be02-4ddc-832b-ab5963c46c98", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "36496481-be02-4ddc-832b-ab5963c46c98", - "x-ms-routing-request-id": "WESTUS2:20210519T185648Z:36496481-be02-4ddc-832b-ab5963c46c98" + "x-ms-correlation-request-id": "849f7163-1edc-466d-b091-9f14f85eaf5e", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "849f7163-1edc-466d-b091-9f14f85eaf5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000224Z:849f7163-1edc-466d-b091-9f14f85eaf5e" }, "ResponseBody": [] }, @@ -5059,7 +5197,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "935336a01de3fd089c951ccfba64088a", "x-ms-return-client-request-id": "true" }, @@ -5068,17 +5206,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:49 GMT", + "Date": "Wed, 16 Jun 2021 00:02:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "77f06400-92d9-48c4-9d76-4c7af93798c8", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "77f06400-92d9-48c4-9d76-4c7af93798c8", - "x-ms-routing-request-id": "WESTUS2:20210519T185649Z:77f06400-92d9-48c4-9d76-4c7af93798c8" + "x-ms-correlation-request-id": "5f13e7ec-1f7b-44a9-8608-4841e1b9fc6e", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "5f13e7ec-1f7b-44a9-8608-4841e1b9fc6e", + "x-ms-routing-request-id": "WESTUS2:20210616T000225Z:5f13e7ec-1f7b-44a9-8608-4841e1b9fc6e" }, "ResponseBody": [] }, @@ -5087,7 +5225,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4fb03f5e2ceeaf6a07f4e24080a04f02", "x-ms-return-client-request-id": "true" }, @@ -5096,17 +5234,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:50 GMT", + "Date": "Wed, 16 Jun 2021 00:02:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5f27fd08-a5fd-4c22-9b1b-aeae4841c610", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "5f27fd08-a5fd-4c22-9b1b-aeae4841c610", - "x-ms-routing-request-id": "WESTUS2:20210519T185650Z:5f27fd08-a5fd-4c22-9b1b-aeae4841c610" + "x-ms-correlation-request-id": "d1bcca25-9e7c-4eb2-9810-903e34986c69", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "d1bcca25-9e7c-4eb2-9810-903e34986c69", + "x-ms-routing-request-id": "WESTUS2:20210616T000226Z:d1bcca25-9e7c-4eb2-9810-903e34986c69" }, "ResponseBody": [] }, @@ -5115,7 +5253,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86441f631cdaf097207c1b1d192d8791", "x-ms-return-client-request-id": "true" }, @@ -5124,17 +5262,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:51 GMT", + "Date": "Wed, 16 Jun 2021 00:02:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "446da01a-4532-49cf-a6d2-7bb40cafdd42", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "446da01a-4532-49cf-a6d2-7bb40cafdd42", - "x-ms-routing-request-id": "WESTUS2:20210519T185651Z:446da01a-4532-49cf-a6d2-7bb40cafdd42" + "x-ms-correlation-request-id": "9b66eb5e-cb28-41f6-8d55-0e618c6e3015", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "9b66eb5e-cb28-41f6-8d55-0e618c6e3015", + "x-ms-routing-request-id": "WESTUS2:20210616T000227Z:9b66eb5e-cb28-41f6-8d55-0e618c6e3015" }, "ResponseBody": [] }, @@ -5143,7 +5281,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c0514a35d2a732fcba48bee3bc77dfb", "x-ms-return-client-request-id": "true" }, @@ -5152,17 +5290,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:52 GMT", + "Date": "Wed, 16 Jun 2021 00:02:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "65dd81c4-37bf-4421-9a9b-99d05e7d7b75", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "65dd81c4-37bf-4421-9a9b-99d05e7d7b75", - "x-ms-routing-request-id": "WESTUS2:20210519T185652Z:65dd81c4-37bf-4421-9a9b-99d05e7d7b75" + "x-ms-correlation-request-id": "3750604c-d1bc-49af-a624-624512dd977f", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "3750604c-d1bc-49af-a624-624512dd977f", + "x-ms-routing-request-id": "WESTUS2:20210616T000228Z:3750604c-d1bc-49af-a624-624512dd977f" }, "ResponseBody": [] }, @@ -5171,7 +5309,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a6b1945822042afa8c02e72104d96da", "x-ms-return-client-request-id": "true" }, @@ -5180,17 +5318,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:53 GMT", + "Date": "Wed, 16 Jun 2021 00:02:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fe33130c-0d30-4a83-9d0d-329ae2d9757a", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "fe33130c-0d30-4a83-9d0d-329ae2d9757a", - "x-ms-routing-request-id": "WESTUS2:20210519T185653Z:fe33130c-0d30-4a83-9d0d-329ae2d9757a" + "x-ms-correlation-request-id": "ab3edd59-dbe8-480d-9a24-b2fd14ee8cf4", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "ab3edd59-dbe8-480d-9a24-b2fd14ee8cf4", + "x-ms-routing-request-id": "WESTUS2:20210616T000229Z:ab3edd59-dbe8-480d-9a24-b2fd14ee8cf4" }, "ResponseBody": [] }, @@ -5199,7 +5337,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b9d506d029b06d8f0d0ba3690a8b558", "x-ms-return-client-request-id": "true" }, @@ -5208,17 +5346,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:54 GMT", + "Date": "Wed, 16 Jun 2021 00:02:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4b2e8448-644b-44b2-96a9-3036d69d1695", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "4b2e8448-644b-44b2-96a9-3036d69d1695", - "x-ms-routing-request-id": "WESTUS2:20210519T185654Z:4b2e8448-644b-44b2-96a9-3036d69d1695" + "x-ms-correlation-request-id": "9ea4f0fc-8f8b-40df-8b85-08297f7a70ec", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "9ea4f0fc-8f8b-40df-8b85-08297f7a70ec", + "x-ms-routing-request-id": "WESTUS2:20210616T000230Z:9ea4f0fc-8f8b-40df-8b85-08297f7a70ec" }, "ResponseBody": [] }, @@ -5227,7 +5365,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ffd720feecc1207164c2a46a2ebd637e", "x-ms-return-client-request-id": "true" }, @@ -5236,17 +5374,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:55 GMT", + "Date": "Wed, 16 Jun 2021 00:02:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a06278b3-1a30-4ac7-994b-a84534950892", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "a06278b3-1a30-4ac7-994b-a84534950892", - "x-ms-routing-request-id": "WESTUS2:20210519T185655Z:a06278b3-1a30-4ac7-994b-a84534950892" + "x-ms-correlation-request-id": "f212a589-2559-45de-ad4d-46b6ccfa8991", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "f212a589-2559-45de-ad4d-46b6ccfa8991", + "x-ms-routing-request-id": "WESTUS2:20210616T000231Z:f212a589-2559-45de-ad4d-46b6ccfa8991" }, "ResponseBody": [] }, @@ -5255,7 +5393,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea80b10d112a43604164aa4fc778b1ff", "x-ms-return-client-request-id": "true" }, @@ -5264,17 +5402,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:56 GMT", + "Date": "Wed, 16 Jun 2021 00:02:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3adc6b4f-a74f-479a-81d1-a523d290ee3f", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "3adc6b4f-a74f-479a-81d1-a523d290ee3f", - "x-ms-routing-request-id": "WESTUS2:20210519T185656Z:3adc6b4f-a74f-479a-81d1-a523d290ee3f" + "x-ms-correlation-request-id": "e0663244-2f63-402f-b819-29a131cc1612", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "e0663244-2f63-402f-b819-29a131cc1612", + "x-ms-routing-request-id": "WESTUS2:20210616T000233Z:e0663244-2f63-402f-b819-29a131cc1612" }, "ResponseBody": [] }, @@ -5283,7 +5421,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f073d50b96768118de7c06d85d6dd833", "x-ms-return-client-request-id": "true" }, @@ -5292,17 +5430,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:57 GMT", + "Date": "Wed, 16 Jun 2021 00:02:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "46379fdb-30b4-479d-8950-9dcc0521e507", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "46379fdb-30b4-479d-8950-9dcc0521e507", - "x-ms-routing-request-id": "WESTUS2:20210519T185657Z:46379fdb-30b4-479d-8950-9dcc0521e507" + "x-ms-correlation-request-id": "923a1800-ff90-478b-9154-39325f640d28", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "923a1800-ff90-478b-9154-39325f640d28", + "x-ms-routing-request-id": "WESTUS2:20210616T000234Z:923a1800-ff90-478b-9154-39325f640d28" }, "ResponseBody": [] }, @@ -5311,7 +5449,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df283c6dca27ed2ebf93be5c412158eb", "x-ms-return-client-request-id": "true" }, @@ -5320,17 +5458,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:58 GMT", + "Date": "Wed, 16 Jun 2021 00:02:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "46ee1775-79de-45b4-af99-1d96a43dc00d", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "46ee1775-79de-45b4-af99-1d96a43dc00d", - "x-ms-routing-request-id": "WESTUS2:20210519T185658Z:46ee1775-79de-45b4-af99-1d96a43dc00d" + "x-ms-correlation-request-id": "787f744f-f399-43f6-9fe2-3f5d7e7336bf", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "787f744f-f399-43f6-9fe2-3f5d7e7336bf", + "x-ms-routing-request-id": "WESTUS2:20210616T000235Z:787f744f-f399-43f6-9fe2-3f5d7e7336bf" }, "ResponseBody": [] }, @@ -5339,7 +5477,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "585fa5117249770899ff0cad0a87e5d3", "x-ms-return-client-request-id": "true" }, @@ -5348,17 +5486,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:59 GMT", + "Date": "Wed, 16 Jun 2021 00:02:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb", - "x-ms-routing-request-id": "WESTUS2:20210519T185659Z:0242f5a7-c0e0-4e6b-9e16-23f01fe1f9bb" + "x-ms-correlation-request-id": "75772058-1d87-4adf-a879-cf118bdfcf4f", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "75772058-1d87-4adf-a879-cf118bdfcf4f", + "x-ms-routing-request-id": "WESTUS2:20210616T000236Z:75772058-1d87-4adf-a879-cf118bdfcf4f" }, "ResponseBody": [] }, @@ -5367,7 +5505,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8be2778cd25040d7a78630e2d8bb3fbd", "x-ms-return-client-request-id": "true" }, @@ -5376,17 +5514,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:00 GMT", + "Date": "Wed, 16 Jun 2021 00:02:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "982388c9-63d4-459d-8db4-4ba88abc7c3c", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "982388c9-63d4-459d-8db4-4ba88abc7c3c", - "x-ms-routing-request-id": "WESTUS2:20210519T185701Z:982388c9-63d4-459d-8db4-4ba88abc7c3c" + "x-ms-correlation-request-id": "ad1d2bfb-2ec8-416c-bf1f-36defe42968a", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "ad1d2bfb-2ec8-416c-bf1f-36defe42968a", + "x-ms-routing-request-id": "WESTUS2:20210616T000237Z:ad1d2bfb-2ec8-416c-bf1f-36defe42968a" }, "ResponseBody": [] }, @@ -5395,7 +5533,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8c71b237f0efbe934b14628be80e338", "x-ms-return-client-request-id": "true" }, @@ -5404,17 +5542,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:01 GMT", + "Date": "Wed, 16 Jun 2021 00:02:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "be3b6112-8c25-4193-ac82-005961beaf66", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "be3b6112-8c25-4193-ac82-005961beaf66", - "x-ms-routing-request-id": "WESTUS2:20210519T185702Z:be3b6112-8c25-4193-ac82-005961beaf66" + "x-ms-correlation-request-id": "7af3f622-b598-4b3c-96f2-e6c7928ad5ff", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "7af3f622-b598-4b3c-96f2-e6c7928ad5ff", + "x-ms-routing-request-id": "WESTUS2:20210616T000238Z:7af3f622-b598-4b3c-96f2-e6c7928ad5ff" }, "ResponseBody": [] }, @@ -5423,7 +5561,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cacfebaecd3f3f9bcd1eb1c341259edd", "x-ms-return-client-request-id": "true" }, @@ -5432,17 +5570,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:02 GMT", + "Date": "Wed, 16 Jun 2021 00:02:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "829e5a43-ee19-4a8a-99b5-1c2e924f897f", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "829e5a43-ee19-4a8a-99b5-1c2e924f897f", - "x-ms-routing-request-id": "WESTUS2:20210519T185703Z:829e5a43-ee19-4a8a-99b5-1c2e924f897f" + "x-ms-correlation-request-id": "4c2cbb3c-083e-4c96-aa3f-5b9c996cc985", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "4c2cbb3c-083e-4c96-aa3f-5b9c996cc985", + "x-ms-routing-request-id": "WESTUS2:20210616T000239Z:4c2cbb3c-083e-4c96-aa3f-5b9c996cc985" }, "ResponseBody": [] }, @@ -5451,7 +5589,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef894ebf2cc00dc48de6569e8cae8226", "x-ms-return-client-request-id": "true" }, @@ -5460,17 +5598,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:03 GMT", + "Date": "Wed, 16 Jun 2021 00:02:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "427806d6-4db0-4e0b-afbe-60c0fd095aac", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "427806d6-4db0-4e0b-afbe-60c0fd095aac", - "x-ms-routing-request-id": "WESTUS2:20210519T185704Z:427806d6-4db0-4e0b-afbe-60c0fd095aac" + "x-ms-correlation-request-id": "c8f0cc4d-5f09-4189-b501-8bd85a985b60", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "c8f0cc4d-5f09-4189-b501-8bd85a985b60", + "x-ms-routing-request-id": "WESTUS2:20210616T000240Z:c8f0cc4d-5f09-4189-b501-8bd85a985b60" }, "ResponseBody": [] }, @@ -5479,7 +5617,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed33f8a275eb567e7f87ebefce25ba0e", "x-ms-return-client-request-id": "true" }, @@ -5488,17 +5626,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:04 GMT", + "Date": "Wed, 16 Jun 2021 00:02:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ed968c9b-3f62-40de-a466-9674def7d8e8", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "ed968c9b-3f62-40de-a466-9674def7d8e8", - "x-ms-routing-request-id": "WESTUS2:20210519T185705Z:ed968c9b-3f62-40de-a466-9674def7d8e8" + "x-ms-correlation-request-id": "50470816-8b72-4ffc-a0be-b3d508ffb59c", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "50470816-8b72-4ffc-a0be-b3d508ffb59c", + "x-ms-routing-request-id": "WESTUS2:20210616T000241Z:50470816-8b72-4ffc-a0be-b3d508ffb59c" }, "ResponseBody": [] }, @@ -5507,7 +5645,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f686813f3f6817726c23c5876fdb21e", "x-ms-return-client-request-id": "true" }, @@ -5516,17 +5654,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:05 GMT", + "Date": "Wed, 16 Jun 2021 00:02:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f56612ee-4623-48ca-8730-e758faf8f5dd", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "f56612ee-4623-48ca-8730-e758faf8f5dd", - "x-ms-routing-request-id": "WESTUS2:20210519T185706Z:f56612ee-4623-48ca-8730-e758faf8f5dd" + "x-ms-correlation-request-id": "bd7b3490-af4c-4cc6-af12-96f825a78d21", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "bd7b3490-af4c-4cc6-af12-96f825a78d21", + "x-ms-routing-request-id": "WESTUS2:20210616T000242Z:bd7b3490-af4c-4cc6-af12-96f825a78d21" }, "ResponseBody": [] }, @@ -5535,7 +5673,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48208a9bb0f24af1d033703841d53f67", "x-ms-return-client-request-id": "true" }, @@ -5544,17 +5682,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:06 GMT", + "Date": "Wed, 16 Jun 2021 00:02:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "bf018d3f-1e02-4b84-bc44-a130a56c8262", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "bf018d3f-1e02-4b84-bc44-a130a56c8262", - "x-ms-routing-request-id": "WESTUS2:20210519T185707Z:bf018d3f-1e02-4b84-bc44-a130a56c8262" + "x-ms-correlation-request-id": "4d565a9f-3385-4da6-8861-a1026efa51ed", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "4d565a9f-3385-4da6-8861-a1026efa51ed", + "x-ms-routing-request-id": "WESTUS2:20210616T000243Z:4d565a9f-3385-4da6-8861-a1026efa51ed" }, "ResponseBody": [] }, @@ -5563,7 +5701,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "238b482c1345af3080b1c7293825df82", "x-ms-return-client-request-id": "true" }, @@ -5572,17 +5710,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:07 GMT", + "Date": "Wed, 16 Jun 2021 00:02:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d46978c1-4a69-44ba-9d81-1c4cf4c8e54f", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "d46978c1-4a69-44ba-9d81-1c4cf4c8e54f", - "x-ms-routing-request-id": "WESTUS2:20210519T185708Z:d46978c1-4a69-44ba-9d81-1c4cf4c8e54f" + "x-ms-correlation-request-id": "a132b3b7-dddd-4291-9ed3-54da48e70548", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "a132b3b7-dddd-4291-9ed3-54da48e70548", + "x-ms-routing-request-id": "WESTUS2:20210616T000244Z:a132b3b7-dddd-4291-9ed3-54da48e70548" }, "ResponseBody": [] }, @@ -5591,7 +5729,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4353ccd57105621c771e9ec3833f4050", "x-ms-return-client-request-id": "true" }, @@ -5600,17 +5738,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:08 GMT", + "Date": "Wed, 16 Jun 2021 00:02:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "55e47615-32d6-4615-9bd6-57450b7ffe1e", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "55e47615-32d6-4615-9bd6-57450b7ffe1e", - "x-ms-routing-request-id": "WESTUS2:20210519T185709Z:55e47615-32d6-4615-9bd6-57450b7ffe1e" + "x-ms-correlation-request-id": "aabf2f48-c3f7-48ab-87e7-e776b4f877b1", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "aabf2f48-c3f7-48ab-87e7-e776b4f877b1", + "x-ms-routing-request-id": "WESTUS2:20210616T000245Z:aabf2f48-c3f7-48ab-87e7-e776b4f877b1" }, "ResponseBody": [] }, @@ -5619,7 +5757,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e2bd4838f7188d85a71c740e9c812aa", "x-ms-return-client-request-id": "true" }, @@ -5628,17 +5766,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:09 GMT", + "Date": "Wed, 16 Jun 2021 00:02:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5647ce8e-b485-4c24-9dba-b5cd2fff9854", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "5647ce8e-b485-4c24-9dba-b5cd2fff9854", - "x-ms-routing-request-id": "WESTUS2:20210519T185710Z:5647ce8e-b485-4c24-9dba-b5cd2fff9854" + "x-ms-correlation-request-id": "29df5e6c-abf6-4fcf-ad11-e9a0ab8c6c92", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "29df5e6c-abf6-4fcf-ad11-e9a0ab8c6c92", + "x-ms-routing-request-id": "WESTUS2:20210616T000246Z:29df5e6c-abf6-4fcf-ad11-e9a0ab8c6c92" }, "ResponseBody": [] }, @@ -5647,7 +5785,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7463ed53fb81bb622c29ac27746d2b41", "x-ms-return-client-request-id": "true" }, @@ -5656,17 +5794,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:10 GMT", + "Date": "Wed, 16 Jun 2021 00:02:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "047aab2d-7a36-4132-aa2a-d696e703b662", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "047aab2d-7a36-4132-aa2a-d696e703b662", - "x-ms-routing-request-id": "WESTUS2:20210519T185711Z:047aab2d-7a36-4132-aa2a-d696e703b662" + "x-ms-correlation-request-id": "774ca8af-4b4f-4ea3-8675-992be22a5b03", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "774ca8af-4b4f-4ea3-8675-992be22a5b03", + "x-ms-routing-request-id": "WESTUS2:20210616T000247Z:774ca8af-4b4f-4ea3-8675-992be22a5b03" }, "ResponseBody": [] }, @@ -5675,7 +5813,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63a57671b1f94510f3cbe894a9db78ae", "x-ms-return-client-request-id": "true" }, @@ -5684,17 +5822,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:11 GMT", + "Date": "Wed, 16 Jun 2021 00:02:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0b88962e-8d86-4b5a-bef9-679f5d437c25", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "0b88962e-8d86-4b5a-bef9-679f5d437c25", - "x-ms-routing-request-id": "WESTUS2:20210519T185712Z:0b88962e-8d86-4b5a-bef9-679f5d437c25" + "x-ms-correlation-request-id": "ca677b8d-4910-4468-9fd3-7f1c04c977f2", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "ca677b8d-4910-4468-9fd3-7f1c04c977f2", + "x-ms-routing-request-id": "WESTUS2:20210616T000248Z:ca677b8d-4910-4468-9fd3-7f1c04c977f2" }, "ResponseBody": [] }, @@ -5703,7 +5841,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "956ff30bcbdb87cf71700248e3b014ed", "x-ms-return-client-request-id": "true" }, @@ -5712,17 +5850,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:12 GMT", + "Date": "Wed, 16 Jun 2021 00:02:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f4d2697b-99f2-4b8d-913a-dd1542f43a0f", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "f4d2697b-99f2-4b8d-913a-dd1542f43a0f", - "x-ms-routing-request-id": "WESTUS2:20210519T185713Z:f4d2697b-99f2-4b8d-913a-dd1542f43a0f" + "x-ms-correlation-request-id": "980f4dbd-a39a-4f74-94df-d9e3a0b83391", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "980f4dbd-a39a-4f74-94df-d9e3a0b83391", + "x-ms-routing-request-id": "WESTUS2:20210616T000249Z:980f4dbd-a39a-4f74-94df-d9e3a0b83391" }, "ResponseBody": [] }, @@ -5731,7 +5869,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72ce8645ae22a2b1dd1d81b612ce1150", "x-ms-return-client-request-id": "true" }, @@ -5740,17 +5878,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:13 GMT", + "Date": "Wed, 16 Jun 2021 00:02:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c78bc25c-af9f-4409-952e-9539b12aa3ed", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "c78bc25c-af9f-4409-952e-9539b12aa3ed", - "x-ms-routing-request-id": "WESTUS2:20210519T185714Z:c78bc25c-af9f-4409-952e-9539b12aa3ed" + "x-ms-correlation-request-id": "455b706e-ff24-4ca8-a3b6-9dc72ff97eb6", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "455b706e-ff24-4ca8-a3b6-9dc72ff97eb6", + "x-ms-routing-request-id": "WESTUS2:20210616T000250Z:455b706e-ff24-4ca8-a3b6-9dc72ff97eb6" }, "ResponseBody": [] }, @@ -5759,7 +5897,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "801bfdb095fda666a71ef289afc86242", "x-ms-return-client-request-id": "true" }, @@ -5768,17 +5906,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:14 GMT", + "Date": "Wed, 16 Jun 2021 00:02:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "bed7ac32-5664-45ba-ae5a-5f688388e184", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "bed7ac32-5664-45ba-ae5a-5f688388e184", - "x-ms-routing-request-id": "WESTUS2:20210519T185715Z:bed7ac32-5664-45ba-ae5a-5f688388e184" + "x-ms-correlation-request-id": "d9b06b75-b8e4-4d29-8694-24f68ca54a72", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "d9b06b75-b8e4-4d29-8694-24f68ca54a72", + "x-ms-routing-request-id": "WESTUS2:20210616T000251Z:d9b06b75-b8e4-4d29-8694-24f68ca54a72" }, "ResponseBody": [] }, @@ -5787,7 +5925,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "234efbb6050d5d8c42cdb8bd4a1974a3", "x-ms-return-client-request-id": "true" }, @@ -5796,17 +5934,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:15 GMT", + "Date": "Wed, 16 Jun 2021 00:02:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "2798a218-9cae-4079-b053-b7233fa2fea1", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "2798a218-9cae-4079-b053-b7233fa2fea1", - "x-ms-routing-request-id": "WESTUS2:20210519T185716Z:2798a218-9cae-4079-b053-b7233fa2fea1" + "x-ms-correlation-request-id": "55130150-8e63-4d0a-a981-a6214f5bc89d", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "55130150-8e63-4d0a-a981-a6214f5bc89d", + "x-ms-routing-request-id": "WESTUS2:20210616T000252Z:55130150-8e63-4d0a-a981-a6214f5bc89d" }, "ResponseBody": [] }, @@ -5815,7 +5953,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e597b15e9394afef1f28cb03bc27f214", "x-ms-return-client-request-id": "true" }, @@ -5824,17 +5962,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:17 GMT", + "Date": "Wed, 16 Jun 2021 00:02:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4df32cb8-84ad-4d3d-ac16-d366b291a93e", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "4df32cb8-84ad-4d3d-ac16-d366b291a93e", - "x-ms-routing-request-id": "WESTUS2:20210519T185717Z:4df32cb8-84ad-4d3d-ac16-d366b291a93e" + "x-ms-correlation-request-id": "e5efaf39-e87a-481c-ac8b-e272450eea0a", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "e5efaf39-e87a-481c-ac8b-e272450eea0a", + "x-ms-routing-request-id": "WESTUS2:20210616T000253Z:e5efaf39-e87a-481c-ac8b-e272450eea0a" }, "ResponseBody": [] }, @@ -5843,7 +5981,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "17ff3ebbee7fab4271be3d30dda85c8d", "x-ms-return-client-request-id": "true" }, @@ -5852,17 +5990,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:18 GMT", + "Date": "Wed, 16 Jun 2021 00:02:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1a236bd6-d5e2-484b-a054-0c4e9358772b", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "1a236bd6-d5e2-484b-a054-0c4e9358772b", - "x-ms-routing-request-id": "WESTUS2:20210519T185718Z:1a236bd6-d5e2-484b-a054-0c4e9358772b" + "x-ms-correlation-request-id": "99d43f6c-9caa-4459-9435-b5c111151bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "99d43f6c-9caa-4459-9435-b5c111151bf1", + "x-ms-routing-request-id": "WESTUS2:20210616T000254Z:99d43f6c-9caa-4459-9435-b5c111151bf1" }, "ResponseBody": [] }, @@ -5871,7 +6009,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd2a4eaa7c3023ad0b9f03e43988a11b", "x-ms-return-client-request-id": "true" }, @@ -5880,17 +6018,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:19 GMT", + "Date": "Wed, 16 Jun 2021 00:02:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a6796d7a-2558-4f60-8871-1fa3a59eab90", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "a6796d7a-2558-4f60-8871-1fa3a59eab90", - "x-ms-routing-request-id": "WESTUS2:20210519T185719Z:a6796d7a-2558-4f60-8871-1fa3a59eab90" + "x-ms-correlation-request-id": "832e6ba6-62a0-432b-a4bb-f25282cdcac4", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "832e6ba6-62a0-432b-a4bb-f25282cdcac4", + "x-ms-routing-request-id": "WESTUS2:20210616T000255Z:832e6ba6-62a0-432b-a4bb-f25282cdcac4" }, "ResponseBody": [] }, @@ -5899,7 +6037,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b01a3da5d1970236eec74d655bed277", "x-ms-return-client-request-id": "true" }, @@ -5908,17 +6046,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:20 GMT", + "Date": "Wed, 16 Jun 2021 00:02:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d22528aa-0e18-4d46-8ef9-2f46c4eb0a29", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "d22528aa-0e18-4d46-8ef9-2f46c4eb0a29", - "x-ms-routing-request-id": "WESTUS2:20210519T185720Z:d22528aa-0e18-4d46-8ef9-2f46c4eb0a29" + "x-ms-correlation-request-id": "fead599c-a7e7-49a6-b88b-353f4da94182", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "fead599c-a7e7-49a6-b88b-353f4da94182", + "x-ms-routing-request-id": "WESTUS2:20210616T000256Z:fead599c-a7e7-49a6-b88b-353f4da94182" }, "ResponseBody": [] }, @@ -5927,7 +6065,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6d593dccf4fd3fe490dc0be0ea5e71e8", "x-ms-return-client-request-id": "true" }, @@ -5936,17 +6074,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:21 GMT", + "Date": "Wed, 16 Jun 2021 00:02:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "08c9707c-ed07-45ac-a540-3eb145410431", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "08c9707c-ed07-45ac-a540-3eb145410431", - "x-ms-routing-request-id": "WESTUS2:20210519T185721Z:08c9707c-ed07-45ac-a540-3eb145410431" + "x-ms-correlation-request-id": "96f37f76-5712-4dd9-93cd-95eb6aba1aed", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "96f37f76-5712-4dd9-93cd-95eb6aba1aed", + "x-ms-routing-request-id": "WESTUS2:20210616T000258Z:96f37f76-5712-4dd9-93cd-95eb6aba1aed" }, "ResponseBody": [] }, @@ -5955,7 +6093,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3956221c50a64c742bb98e4308d7cd4d", "x-ms-return-client-request-id": "true" }, @@ -5964,17 +6102,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:22 GMT", + "Date": "Wed, 16 Jun 2021 00:02:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6401799a-9b15-4054-b19b-65310f230b96", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "6401799a-9b15-4054-b19b-65310f230b96", - "x-ms-routing-request-id": "WESTUS2:20210519T185722Z:6401799a-9b15-4054-b19b-65310f230b96" + "x-ms-correlation-request-id": "8975a428-1a96-4434-a9d1-3b12875bfe11", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "8975a428-1a96-4434-a9d1-3b12875bfe11", + "x-ms-routing-request-id": "WESTUS2:20210616T000259Z:8975a428-1a96-4434-a9d1-3b12875bfe11" }, "ResponseBody": [] }, @@ -5983,7 +6121,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb188ccd332ee51dbfc27a3d51428610", "x-ms-return-client-request-id": "true" }, @@ -5992,17 +6130,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:23 GMT", + "Date": "Wed, 16 Jun 2021 00:02:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0c528c9d-16fd-437f-9c64-4ae088d2da9c", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "0c528c9d-16fd-437f-9c64-4ae088d2da9c", - "x-ms-routing-request-id": "WESTUS2:20210519T185723Z:0c528c9d-16fd-437f-9c64-4ae088d2da9c" + "x-ms-correlation-request-id": "5f9dac07-5dc0-40f3-a6fe-a63f46cd34ae", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "5f9dac07-5dc0-40f3-a6fe-a63f46cd34ae", + "x-ms-routing-request-id": "WESTUS2:20210616T000300Z:5f9dac07-5dc0-40f3-a6fe-a63f46cd34ae" }, "ResponseBody": [] }, @@ -6011,7 +6149,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32b98b7b98687cd0c90c424366a036b9", "x-ms-return-client-request-id": "true" }, @@ -6020,17 +6158,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:24 GMT", + "Date": "Wed, 16 Jun 2021 00:03:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b38da3b0-7eaf-4a68-8c0c-34a2fa61d135", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "b38da3b0-7eaf-4a68-8c0c-34a2fa61d135", - "x-ms-routing-request-id": "WESTUS2:20210519T185724Z:b38da3b0-7eaf-4a68-8c0c-34a2fa61d135" + "x-ms-correlation-request-id": "4e7c772d-7e5a-4e1a-85af-33063a22afa6", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "4e7c772d-7e5a-4e1a-85af-33063a22afa6", + "x-ms-routing-request-id": "WESTUS2:20210616T000301Z:4e7c772d-7e5a-4e1a-85af-33063a22afa6" }, "ResponseBody": [] }, @@ -6039,7 +6177,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d13be0e7545e9ba05717ae4d536fbe8", "x-ms-return-client-request-id": "true" }, @@ -6048,17 +6186,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:25 GMT", + "Date": "Wed, 16 Jun 2021 00:03:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "92420c67-fc78-41da-a6d0-80ea21ec9fdf", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "92420c67-fc78-41da-a6d0-80ea21ec9fdf", - "x-ms-routing-request-id": "WESTUS2:20210519T185725Z:92420c67-fc78-41da-a6d0-80ea21ec9fdf" + "x-ms-correlation-request-id": "d59b0e16-d405-40f3-8d09-266b02175c8a", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "d59b0e16-d405-40f3-8d09-266b02175c8a", + "x-ms-routing-request-id": "WESTUS2:20210616T000302Z:d59b0e16-d405-40f3-8d09-266b02175c8a" }, "ResponseBody": [] }, @@ -6067,7 +6205,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cc87e329a1d34e5bc9c3221f1d97f1f", "x-ms-return-client-request-id": "true" }, @@ -6076,17 +6214,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:26 GMT", + "Date": "Wed, 16 Jun 2021 00:03:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1cbc00e9-ffde-4fad-931b-12f241963518", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "1cbc00e9-ffde-4fad-931b-12f241963518", - "x-ms-routing-request-id": "WESTUS2:20210519T185726Z:1cbc00e9-ffde-4fad-931b-12f241963518" + "x-ms-correlation-request-id": "d085824a-ce44-4107-a32a-cd655f62ade0", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "d085824a-ce44-4107-a32a-cd655f62ade0", + "x-ms-routing-request-id": "WESTUS2:20210616T000303Z:d085824a-ce44-4107-a32a-cd655f62ade0" }, "ResponseBody": [] }, @@ -6095,7 +6233,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "932ec18b292f05cbd1d02df71eeca692", "x-ms-return-client-request-id": "true" }, @@ -6104,17 +6242,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:27 GMT", + "Date": "Wed, 16 Jun 2021 00:03:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "31c95422-0098-4357-8dc3-597780b5fbdf", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "31c95422-0098-4357-8dc3-597780b5fbdf", - "x-ms-routing-request-id": "WESTUS2:20210519T185727Z:31c95422-0098-4357-8dc3-597780b5fbdf" + "x-ms-correlation-request-id": "ba013937-26dd-48e3-8a66-68ecd2fa0fb6", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "ba013937-26dd-48e3-8a66-68ecd2fa0fb6", + "x-ms-routing-request-id": "WESTUS2:20210616T000304Z:ba013937-26dd-48e3-8a66-68ecd2fa0fb6" }, "ResponseBody": [] }, @@ -6123,7 +6261,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8115a11bad7749cd8dfa1a94398f72b", "x-ms-return-client-request-id": "true" }, @@ -6132,17 +6270,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:28 GMT", + "Date": "Wed, 16 Jun 2021 00:03:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "913a12e7-0be0-4b3e-81be-5f139e379917", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "913a12e7-0be0-4b3e-81be-5f139e379917", - "x-ms-routing-request-id": "WESTUS2:20210519T185728Z:913a12e7-0be0-4b3e-81be-5f139e379917" + "x-ms-correlation-request-id": "5ec416e3-685d-4504-8375-930122ed5766", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "5ec416e3-685d-4504-8375-930122ed5766", + "x-ms-routing-request-id": "WESTUS2:20210616T000305Z:5ec416e3-685d-4504-8375-930122ed5766" }, "ResponseBody": [] }, @@ -6151,7 +6289,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14585af1670809b9b2c2ab4d6dee15d0", "x-ms-return-client-request-id": "true" }, @@ -6160,17 +6298,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:29 GMT", + "Date": "Wed, 16 Jun 2021 00:03:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "db3fe498-9612-432f-8c2f-03406f671691", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "db3fe498-9612-432f-8c2f-03406f671691", - "x-ms-routing-request-id": "WESTUS2:20210519T185729Z:db3fe498-9612-432f-8c2f-03406f671691" + "x-ms-correlation-request-id": "0d30332f-9192-4c01-9b86-475fc784fa3f", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "0d30332f-9192-4c01-9b86-475fc784fa3f", + "x-ms-routing-request-id": "WESTUS2:20210616T000306Z:0d30332f-9192-4c01-9b86-475fc784fa3f" }, "ResponseBody": [] }, @@ -6179,7 +6317,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97109ff597c8d14724baba4f8721c238", "x-ms-return-client-request-id": "true" }, @@ -6188,17 +6326,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:30 GMT", + "Date": "Wed, 16 Jun 2021 00:03:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a50b46bd-5610-41c4-a608-f62fc93545a5", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "a50b46bd-5610-41c4-a608-f62fc93545a5", - "x-ms-routing-request-id": "WESTUS2:20210519T185730Z:a50b46bd-5610-41c4-a608-f62fc93545a5" + "x-ms-correlation-request-id": "0814edd8-a775-444d-974c-2fbfce3580cb", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "0814edd8-a775-444d-974c-2fbfce3580cb", + "x-ms-routing-request-id": "WESTUS2:20210616T000307Z:0814edd8-a775-444d-974c-2fbfce3580cb" }, "ResponseBody": [] }, @@ -6207,7 +6345,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c30502d89194aa8aa00735140f4f07ea", "x-ms-return-client-request-id": "true" }, @@ -6216,17 +6354,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:31 GMT", + "Date": "Wed, 16 Jun 2021 00:03:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b4832ffc-9834-46c2-b405-291b42d11479", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "b4832ffc-9834-46c2-b405-291b42d11479", - "x-ms-routing-request-id": "WESTUS2:20210519T185731Z:b4832ffc-9834-46c2-b405-291b42d11479" + "x-ms-correlation-request-id": "206d83cc-f0de-48f8-a8ae-9a4fd5366201", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "206d83cc-f0de-48f8-a8ae-9a4fd5366201", + "x-ms-routing-request-id": "WESTUS2:20210616T000308Z:206d83cc-f0de-48f8-a8ae-9a4fd5366201" }, "ResponseBody": [] }, @@ -6235,7 +6373,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b3d1c960885a621386ef4eac698191", "x-ms-return-client-request-id": "true" }, @@ -6244,17 +6382,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:32 GMT", + "Date": "Wed, 16 Jun 2021 00:03:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "16486322-3eea-4f2a-8503-99d5646e037a", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "16486322-3eea-4f2a-8503-99d5646e037a", - "x-ms-routing-request-id": "WESTUS2:20210519T185733Z:16486322-3eea-4f2a-8503-99d5646e037a" + "x-ms-correlation-request-id": "8ceefe2b-4ee2-47df-8609-a85671a3815c", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "8ceefe2b-4ee2-47df-8609-a85671a3815c", + "x-ms-routing-request-id": "WESTUS2:20210616T000309Z:8ceefe2b-4ee2-47df-8609-a85671a3815c" }, "ResponseBody": [] }, @@ -6263,7 +6401,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a74720051e8633c1565f6c06132c2d5", "x-ms-return-client-request-id": "true" }, @@ -6272,17 +6410,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:33 GMT", + "Date": "Wed, 16 Jun 2021 00:03:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e73726bd-9b90-4186-b3d0-bd686df65138", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "e73726bd-9b90-4186-b3d0-bd686df65138", - "x-ms-routing-request-id": "WESTUS2:20210519T185734Z:e73726bd-9b90-4186-b3d0-bd686df65138" + "x-ms-correlation-request-id": "09e5485e-2178-4756-9f1c-3cdb342bf590", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "09e5485e-2178-4756-9f1c-3cdb342bf590", + "x-ms-routing-request-id": "WESTUS2:20210616T000310Z:09e5485e-2178-4756-9f1c-3cdb342bf590" }, "ResponseBody": [] }, @@ -6291,7 +6429,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b686cfb31e6d78b09faab00da23cfd37", "x-ms-return-client-request-id": "true" }, @@ -6300,17 +6438,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:34 GMT", + "Date": "Wed, 16 Jun 2021 00:03:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad", - "x-ms-routing-request-id": "WESTUS2:20210519T185735Z:cea70e4d-c98e-43ba-ab64-7b7f9e62f3ad" + "x-ms-correlation-request-id": "a036a1b9-4927-4563-9bcd-8dc67c3fcdbc", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "a036a1b9-4927-4563-9bcd-8dc67c3fcdbc", + "x-ms-routing-request-id": "WESTUS2:20210616T000311Z:a036a1b9-4927-4563-9bcd-8dc67c3fcdbc" }, "ResponseBody": [] }, @@ -6319,7 +6457,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c13a3869cda7702954f8f226aa1f8e0", "x-ms-return-client-request-id": "true" }, @@ -6328,17 +6466,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:35 GMT", + "Date": "Wed, 16 Jun 2021 00:03:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b25f099c-017a-4bac-8646-c76e0a5d6928", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "b25f099c-017a-4bac-8646-c76e0a5d6928", - "x-ms-routing-request-id": "WESTUS2:20210519T185736Z:b25f099c-017a-4bac-8646-c76e0a5d6928" + "x-ms-correlation-request-id": "f85590fa-9f0f-4f69-afa4-9690792f285c", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "f85590fa-9f0f-4f69-afa4-9690792f285c", + "x-ms-routing-request-id": "WESTUS2:20210616T000312Z:f85590fa-9f0f-4f69-afa4-9690792f285c" }, "ResponseBody": [] }, @@ -6347,7 +6485,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc9a19c4cae3e223c1fccb3ea12ec1d8", "x-ms-return-client-request-id": "true" }, @@ -6356,17 +6494,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:36 GMT", + "Date": "Wed, 16 Jun 2021 00:03:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "591841f0-3b5f-462c-b05f-ba70e96c812d", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "591841f0-3b5f-462c-b05f-ba70e96c812d", - "x-ms-routing-request-id": "WESTUS2:20210519T185737Z:591841f0-3b5f-462c-b05f-ba70e96c812d" + "x-ms-correlation-request-id": "a27b53c0-dc80-4412-a7ea-86b3919b3b03", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "a27b53c0-dc80-4412-a7ea-86b3919b3b03", + "x-ms-routing-request-id": "WESTUS2:20210616T000313Z:a27b53c0-dc80-4412-a7ea-86b3919b3b03" }, "ResponseBody": [] }, @@ -6375,7 +6513,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be3abe68251e16fbcd0e211e8e8e0dfd", "x-ms-return-client-request-id": "true" }, @@ -6384,17 +6522,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:37 GMT", + "Date": "Wed, 16 Jun 2021 00:03:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "00da3478-9a20-4764-8f3a-cebd418a3711", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "00da3478-9a20-4764-8f3a-cebd418a3711", - "x-ms-routing-request-id": "WESTUS2:20210519T185738Z:00da3478-9a20-4764-8f3a-cebd418a3711" + "x-ms-correlation-request-id": "bd6b3912-ec4a-46c8-809f-c50369e6ccb8", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "bd6b3912-ec4a-46c8-809f-c50369e6ccb8", + "x-ms-routing-request-id": "WESTUS2:20210616T000314Z:bd6b3912-ec4a-46c8-809f-c50369e6ccb8" }, "ResponseBody": [] }, @@ -6403,7 +6541,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8849cfb121a1bb548031dbded1c3d666", "x-ms-return-client-request-id": "true" }, @@ -6412,17 +6550,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:38 GMT", + "Date": "Wed, 16 Jun 2021 00:03:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5bd7ee6d-48fe-4320-bb38-f54821d9ed8d", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "5bd7ee6d-48fe-4320-bb38-f54821d9ed8d", - "x-ms-routing-request-id": "WESTUS2:20210519T185739Z:5bd7ee6d-48fe-4320-bb38-f54821d9ed8d" + "x-ms-correlation-request-id": "fe10eb02-07a2-470a-ba21-a8e75b72aa6d", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "fe10eb02-07a2-470a-ba21-a8e75b72aa6d", + "x-ms-routing-request-id": "WESTUS2:20210616T000315Z:fe10eb02-07a2-470a-ba21-a8e75b72aa6d" }, "ResponseBody": [] }, @@ -6431,7 +6569,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abbab68e3a669ec11e830ed5a8055332", "x-ms-return-client-request-id": "true" }, @@ -6440,17 +6578,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:39 GMT", + "Date": "Wed, 16 Jun 2021 00:03:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "153f03d8-0a38-424f-9de8-1076f222144f", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "153f03d8-0a38-424f-9de8-1076f222144f", - "x-ms-routing-request-id": "WESTUS2:20210519T185740Z:153f03d8-0a38-424f-9de8-1076f222144f" + "x-ms-correlation-request-id": "58536722-e21a-4e71-a94c-5a1ac8e9e85c", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "58536722-e21a-4e71-a94c-5a1ac8e9e85c", + "x-ms-routing-request-id": "WESTUS2:20210616T000316Z:58536722-e21a-4e71-a94c-5a1ac8e9e85c" }, "ResponseBody": [] }, @@ -6459,7 +6597,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d18dcdee38e547376a7f3eed4a1c450a", "x-ms-return-client-request-id": "true" }, @@ -6468,17 +6606,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:40 GMT", + "Date": "Wed, 16 Jun 2021 00:03:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fb4b0a46-1f69-41ba-809f-286711fd5e3b", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "fb4b0a46-1f69-41ba-809f-286711fd5e3b", - "x-ms-routing-request-id": "WESTUS2:20210519T185741Z:fb4b0a46-1f69-41ba-809f-286711fd5e3b" + "x-ms-correlation-request-id": "2a1b853b-85c3-4c7c-9dc3-505182770d0c", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "2a1b853b-85c3-4c7c-9dc3-505182770d0c", + "x-ms-routing-request-id": "WESTUS2:20210616T000317Z:2a1b853b-85c3-4c7c-9dc3-505182770d0c" }, "ResponseBody": [] }, @@ -6487,7 +6625,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d88fbb3762d476960eaa691d127e127a", "x-ms-return-client-request-id": "true" }, @@ -6496,17 +6634,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:41 GMT", + "Date": "Wed, 16 Jun 2021 00:03:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e", - "x-ms-routing-request-id": "WESTUS2:20210519T185742Z:dd55df8e-7fe7-4734-a8ec-f8a9ce034e1e" + "x-ms-correlation-request-id": "6d91cc29-5ee5-49b0-ab75-1eb7ba8c12c4", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "6d91cc29-5ee5-49b0-ab75-1eb7ba8c12c4", + "x-ms-routing-request-id": "WESTUS2:20210616T000318Z:6d91cc29-5ee5-49b0-ab75-1eb7ba8c12c4" }, "ResponseBody": [] }, @@ -6515,7 +6653,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03efa8dd053655807f7240e7fcd45401", "x-ms-return-client-request-id": "true" }, @@ -6524,17 +6662,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:42 GMT", + "Date": "Wed, 16 Jun 2021 00:03:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fe35acc4-d9dc-463b-8b87-95450bf420a1", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "fe35acc4-d9dc-463b-8b87-95450bf420a1", - "x-ms-routing-request-id": "WESTUS2:20210519T185743Z:fe35acc4-d9dc-463b-8b87-95450bf420a1" + "x-ms-correlation-request-id": "705f5dd3-37c9-41a9-a045-190335dff280", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "705f5dd3-37c9-41a9-a045-190335dff280", + "x-ms-routing-request-id": "WESTUS2:20210616T000319Z:705f5dd3-37c9-41a9-a045-190335dff280" }, "ResponseBody": [] }, @@ -6543,7 +6681,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed9d043d7b758b5e3616c33bce1934eb", "x-ms-return-client-request-id": "true" }, @@ -6552,17 +6690,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:43 GMT", + "Date": "Wed, 16 Jun 2021 00:03:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0fcb0a95-1546-4845-a123-38a68656f0f4", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "0fcb0a95-1546-4845-a123-38a68656f0f4", - "x-ms-routing-request-id": "WESTUS2:20210519T185744Z:0fcb0a95-1546-4845-a123-38a68656f0f4" + "x-ms-correlation-request-id": "267952f0-49d9-4a19-bddf-612a37b2ff7c", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "267952f0-49d9-4a19-bddf-612a37b2ff7c", + "x-ms-routing-request-id": "WESTUS2:20210616T000320Z:267952f0-49d9-4a19-bddf-612a37b2ff7c" }, "ResponseBody": [] }, @@ -6571,7 +6709,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a110c36d412d32d43a3a596122af7a39", "x-ms-return-client-request-id": "true" }, @@ -6580,17 +6718,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:44 GMT", + "Date": "Wed, 16 Jun 2021 00:03:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c01f1116-6dff-47c5-b3a0-ea1554510513", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "c01f1116-6dff-47c5-b3a0-ea1554510513", - "x-ms-routing-request-id": "WESTUS2:20210519T185745Z:c01f1116-6dff-47c5-b3a0-ea1554510513" + "x-ms-correlation-request-id": "6e2c4a03-dc98-4e8e-a657-edcb95ff5244", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "6e2c4a03-dc98-4e8e-a657-edcb95ff5244", + "x-ms-routing-request-id": "WESTUS2:20210616T000321Z:6e2c4a03-dc98-4e8e-a657-edcb95ff5244" }, "ResponseBody": [] }, @@ -6599,7 +6737,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ddf685524e161054a63cd1f41458666", "x-ms-return-client-request-id": "true" }, @@ -6608,17 +6746,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:45 GMT", + "Date": "Wed, 16 Jun 2021 00:03:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9db6eb81-d8b6-4be7-8cd1-a025c9951a09", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "9db6eb81-d8b6-4be7-8cd1-a025c9951a09", - "x-ms-routing-request-id": "WESTUS2:20210519T185746Z:9db6eb81-d8b6-4be7-8cd1-a025c9951a09" + "x-ms-correlation-request-id": "cfd5797d-4f0a-4c80-b88a-90f77dabb0dd", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "cfd5797d-4f0a-4c80-b88a-90f77dabb0dd", + "x-ms-routing-request-id": "WESTUS2:20210616T000322Z:cfd5797d-4f0a-4c80-b88a-90f77dabb0dd" }, "ResponseBody": [] }, @@ -6627,7 +6765,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "397a543db3c3fcd4306ab33b22fc6987", "x-ms-return-client-request-id": "true" }, @@ -6636,17 +6774,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:46 GMT", + "Date": "Wed, 16 Jun 2021 00:03:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "96b575dd-cb96-4efc-81c9-5b4821ad28f5", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "96b575dd-cb96-4efc-81c9-5b4821ad28f5", - "x-ms-routing-request-id": "WESTUS2:20210519T185747Z:96b575dd-cb96-4efc-81c9-5b4821ad28f5" + "x-ms-correlation-request-id": "50589c0f-10cc-4563-a0f2-911cd9fcd5c2", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "50589c0f-10cc-4563-a0f2-911cd9fcd5c2", + "x-ms-routing-request-id": "WESTUS2:20210616T000323Z:50589c0f-10cc-4563-a0f2-911cd9fcd5c2" }, "ResponseBody": [] }, @@ -6655,7 +6793,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "66e6899c2739480abeae56c974b4f0f5", "x-ms-return-client-request-id": "true" }, @@ -6664,17 +6802,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:47 GMT", + "Date": "Wed, 16 Jun 2021 00:03:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fb48cfea-89e8-4d87-b6de-f3d4f7768190", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "fb48cfea-89e8-4d87-b6de-f3d4f7768190", - "x-ms-routing-request-id": "WESTUS2:20210519T185748Z:fb48cfea-89e8-4d87-b6de-f3d4f7768190" + "x-ms-correlation-request-id": "6b703304-a9f5-44f6-bb46-a20b5b8f3e28", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "6b703304-a9f5-44f6-bb46-a20b5b8f3e28", + "x-ms-routing-request-id": "WESTUS2:20210616T000324Z:6b703304-a9f5-44f6-bb46-a20b5b8f3e28" }, "ResponseBody": [] }, @@ -6683,7 +6821,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce23f2b34035a17694e3dd7671c93f4e", "x-ms-return-client-request-id": "true" }, @@ -6692,17 +6830,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:48 GMT", + "Date": "Wed, 16 Jun 2021 00:03:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e83a00d1-6e36-4c7c-b884-72e38dea8ac3", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "e83a00d1-6e36-4c7c-b884-72e38dea8ac3", - "x-ms-routing-request-id": "WESTUS2:20210519T185749Z:e83a00d1-6e36-4c7c-b884-72e38dea8ac3" + "x-ms-correlation-request-id": "8d73cdaf-1a30-4612-af8a-88650169fe60", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "8d73cdaf-1a30-4612-af8a-88650169fe60", + "x-ms-routing-request-id": "WESTUS2:20210616T000325Z:8d73cdaf-1a30-4612-af8a-88650169fe60" }, "ResponseBody": [] }, @@ -6711,7 +6849,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b88346fa205f162c49327a155c0b877b", "x-ms-return-client-request-id": "true" }, @@ -6720,17 +6858,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:49 GMT", + "Date": "Wed, 16 Jun 2021 00:03:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a0dcfb43-f92a-4a93-afea-1a1808ecbd30", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "a0dcfb43-f92a-4a93-afea-1a1808ecbd30", - "x-ms-routing-request-id": "WESTUS2:20210519T185750Z:a0dcfb43-f92a-4a93-afea-1a1808ecbd30" + "x-ms-correlation-request-id": "236bd698-89a2-43d8-b136-47fd9a187639", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "236bd698-89a2-43d8-b136-47fd9a187639", + "x-ms-routing-request-id": "WESTUS2:20210616T000327Z:236bd698-89a2-43d8-b136-47fd9a187639" }, "ResponseBody": [] }, @@ -6739,7 +6877,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f87be799bd85b511344d2554993d6f4", "x-ms-return-client-request-id": "true" }, @@ -6748,17 +6886,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:50 GMT", + "Date": "Wed, 16 Jun 2021 00:03:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8eb68768-fd14-4327-91a7-685c8b67e5eb", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "8eb68768-fd14-4327-91a7-685c8b67e5eb", - "x-ms-routing-request-id": "WESTUS2:20210519T185751Z:8eb68768-fd14-4327-91a7-685c8b67e5eb" + "x-ms-correlation-request-id": "e98b77f3-b077-4164-a1e2-81f2300d7d8b", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "e98b77f3-b077-4164-a1e2-81f2300d7d8b", + "x-ms-routing-request-id": "WESTUS2:20210616T000328Z:e98b77f3-b077-4164-a1e2-81f2300d7d8b" }, "ResponseBody": [] }, @@ -6767,7 +6905,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ece086e38319395c50c8403c5604488", "x-ms-return-client-request-id": "true" }, @@ -6776,17 +6914,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:51 GMT", + "Date": "Wed, 16 Jun 2021 00:03:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "301feab7-3e3b-481f-951b-1d08295e8463", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "301feab7-3e3b-481f-951b-1d08295e8463", - "x-ms-routing-request-id": "WESTUS2:20210519T185752Z:301feab7-3e3b-481f-951b-1d08295e8463" + "x-ms-correlation-request-id": "24f40b35-396f-40a3-bd21-468e4e1ec8be", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "24f40b35-396f-40a3-bd21-468e4e1ec8be", + "x-ms-routing-request-id": "WESTUS2:20210616T000329Z:24f40b35-396f-40a3-bd21-468e4e1ec8be" }, "ResponseBody": [] }, @@ -6795,7 +6933,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3fc625c0f425f75f427a41b4dd7cdb5", "x-ms-return-client-request-id": "true" }, @@ -6804,17 +6942,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:52 GMT", + "Date": "Wed, 16 Jun 2021 00:03:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6a43d443-adbc-4293-ac7d-d8de95c49410", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "6a43d443-adbc-4293-ac7d-d8de95c49410", - "x-ms-routing-request-id": "WESTUS2:20210519T185753Z:6a43d443-adbc-4293-ac7d-d8de95c49410" + "x-ms-correlation-request-id": "7c1d7fca-e948-4464-a3a3-192246933f7f", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "7c1d7fca-e948-4464-a3a3-192246933f7f", + "x-ms-routing-request-id": "WESTUS2:20210616T000330Z:7c1d7fca-e948-4464-a3a3-192246933f7f" }, "ResponseBody": [] }, @@ -6823,7 +6961,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54a6865b593c414928f469cb164e95b2", "x-ms-return-client-request-id": "true" }, @@ -6832,17 +6970,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:53 GMT", + "Date": "Wed, 16 Jun 2021 00:03:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "df2b6c1e-b0b7-447f-a9cd-8223f6b63d31", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "df2b6c1e-b0b7-447f-a9cd-8223f6b63d31", - "x-ms-routing-request-id": "WESTUS2:20210519T185754Z:df2b6c1e-b0b7-447f-a9cd-8223f6b63d31" + "x-ms-correlation-request-id": "764ac35a-89c5-4cfc-a02b-9884a55db8ce", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "764ac35a-89c5-4cfc-a02b-9884a55db8ce", + "x-ms-routing-request-id": "WESTUS2:20210616T000331Z:764ac35a-89c5-4cfc-a02b-9884a55db8ce" }, "ResponseBody": [] }, @@ -6851,7 +6989,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6f849ff22975fb2926e390a947a45ee", "x-ms-return-client-request-id": "true" }, @@ -6860,17 +6998,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:55 GMT", + "Date": "Wed, 16 Jun 2021 00:03:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b320430b-7b22-45fa-a516-39dd92986ee3", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "b320430b-7b22-45fa-a516-39dd92986ee3", - "x-ms-routing-request-id": "WESTUS2:20210519T185755Z:b320430b-7b22-45fa-a516-39dd92986ee3" + "x-ms-correlation-request-id": "5800c2e8-b49a-4a64-88a0-2c90358b61f5", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "5800c2e8-b49a-4a64-88a0-2c90358b61f5", + "x-ms-routing-request-id": "WESTUS2:20210616T000332Z:5800c2e8-b49a-4a64-88a0-2c90358b61f5" }, "ResponseBody": [] }, @@ -6879,7 +7017,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fa7ce3ff0b9034c18bb8b4ea6aa48a5", "x-ms-return-client-request-id": "true" }, @@ -6888,17 +7026,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:56 GMT", + "Date": "Wed, 16 Jun 2021 00:03:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c", - "x-ms-routing-request-id": "WESTUS2:20210519T185756Z:b3ecdcbc-2865-4fd3-ae0b-1b208ec4b65c" + "x-ms-correlation-request-id": "4dd3e811-15c9-48a5-a640-30f11d9d99a1", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "4dd3e811-15c9-48a5-a640-30f11d9d99a1", + "x-ms-routing-request-id": "WESTUS2:20210616T000333Z:4dd3e811-15c9-48a5-a640-30f11d9d99a1" }, "ResponseBody": [] }, @@ -6907,7 +7045,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "041cf191e6de391ed347c2cd1f3fadae", "x-ms-return-client-request-id": "true" }, @@ -6916,17 +7054,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:57 GMT", + "Date": "Wed, 16 Jun 2021 00:03:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9d3c15f1-7090-423c-a78f-ad2bd6ebf348", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "9d3c15f1-7090-423c-a78f-ad2bd6ebf348", - "x-ms-routing-request-id": "WESTUS2:20210519T185757Z:9d3c15f1-7090-423c-a78f-ad2bd6ebf348" + "x-ms-correlation-request-id": "46065745-5684-449e-807e-7dd4df90ac5a", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "46065745-5684-449e-807e-7dd4df90ac5a", + "x-ms-routing-request-id": "WESTUS2:20210616T000334Z:46065745-5684-449e-807e-7dd4df90ac5a" }, "ResponseBody": [] }, @@ -6935,7 +7073,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "488c7bae56a70ef9fdf5cedc9764b8e8", "x-ms-return-client-request-id": "true" }, @@ -6944,17 +7082,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:58 GMT", + "Date": "Wed, 16 Jun 2021 00:03:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "377767f5-1c68-4cb6-8c5f-a97a1307f4fa", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "377767f5-1c68-4cb6-8c5f-a97a1307f4fa", - "x-ms-routing-request-id": "WESTUS2:20210519T185758Z:377767f5-1c68-4cb6-8c5f-a97a1307f4fa" + "x-ms-correlation-request-id": "df8cc75d-0d72-4098-83c6-66cfdde8908e", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "df8cc75d-0d72-4098-83c6-66cfdde8908e", + "x-ms-routing-request-id": "WESTUS2:20210616T000335Z:df8cc75d-0d72-4098-83c6-66cfdde8908e" }, "ResponseBody": [] }, @@ -6963,7 +7101,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2799425415e580faf6e6b722d7ee4d9", "x-ms-return-client-request-id": "true" }, @@ -6972,17 +7110,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:59 GMT", + "Date": "Wed, 16 Jun 2021 00:03:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ec306f53-c2cb-4a4f-a98e-828c43ca7d5a", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "ec306f53-c2cb-4a4f-a98e-828c43ca7d5a", - "x-ms-routing-request-id": "WESTUS2:20210519T185759Z:ec306f53-c2cb-4a4f-a98e-828c43ca7d5a" + "x-ms-correlation-request-id": "3bd725be-5ca3-4f9a-bd07-b662c566b249", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "3bd725be-5ca3-4f9a-bd07-b662c566b249", + "x-ms-routing-request-id": "WESTUS2:20210616T000336Z:3bd725be-5ca3-4f9a-bd07-b662c566b249" }, "ResponseBody": [] }, @@ -6991,7 +7129,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2aa0dd0e001d3bfef80d07e81842a26f", "x-ms-return-client-request-id": "true" }, @@ -7000,17 +7138,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:00 GMT", + "Date": "Wed, 16 Jun 2021 00:03:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5fc6eb3e-c870-4d22-8ad3-ba3cda210975", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "5fc6eb3e-c870-4d22-8ad3-ba3cda210975", - "x-ms-routing-request-id": "WESTUS2:20210519T185800Z:5fc6eb3e-c870-4d22-8ad3-ba3cda210975" + "x-ms-correlation-request-id": "129542c4-a33e-4de9-a739-1e8839de6361", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "129542c4-a33e-4de9-a739-1e8839de6361", + "x-ms-routing-request-id": "WESTUS2:20210616T000337Z:129542c4-a33e-4de9-a739-1e8839de6361" }, "ResponseBody": [] }, @@ -7019,7 +7157,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8aa7da8e0ac66c4f6b339839ea86e17e", "x-ms-return-client-request-id": "true" }, @@ -7028,17 +7166,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:01 GMT", + "Date": "Wed, 16 Jun 2021 00:03:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cc80aebf-6ec3-437a-a07d-00174ba91485", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "cc80aebf-6ec3-437a-a07d-00174ba91485", - "x-ms-routing-request-id": "WESTUS2:20210519T185801Z:cc80aebf-6ec3-437a-a07d-00174ba91485" + "x-ms-correlation-request-id": "d6a8a373-590e-44bb-b34f-855da6b55bd7", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "d6a8a373-590e-44bb-b34f-855da6b55bd7", + "x-ms-routing-request-id": "WESTUS2:20210616T000338Z:d6a8a373-590e-44bb-b34f-855da6b55bd7" }, "ResponseBody": [] }, @@ -7047,7 +7185,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9cef4118dc425ca963da9513a26406d", "x-ms-return-client-request-id": "true" }, @@ -7056,17 +7194,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:02 GMT", + "Date": "Wed, 16 Jun 2021 00:03:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3eed80b8-4449-4f73-89b8-6b5ac538335a", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "3eed80b8-4449-4f73-89b8-6b5ac538335a", - "x-ms-routing-request-id": "WESTUS2:20210519T185803Z:3eed80b8-4449-4f73-89b8-6b5ac538335a" + "x-ms-correlation-request-id": "8fd85d97-7b76-4c71-b296-d64117e1fcdb", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "8fd85d97-7b76-4c71-b296-d64117e1fcdb", + "x-ms-routing-request-id": "WESTUS2:20210616T000339Z:8fd85d97-7b76-4c71-b296-d64117e1fcdb" }, "ResponseBody": [] }, @@ -7075,7 +7213,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53e3fccc59d603138d33bfea67c45071", "x-ms-return-client-request-id": "true" }, @@ -7084,17 +7222,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:03 GMT", + "Date": "Wed, 16 Jun 2021 00:03:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b8934963-32e9-4910-94fb-9bfe2e7df616", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "b8934963-32e9-4910-94fb-9bfe2e7df616", - "x-ms-routing-request-id": "WESTUS2:20210519T185804Z:b8934963-32e9-4910-94fb-9bfe2e7df616" + "x-ms-correlation-request-id": "c6f08f1a-cf95-4c3d-83fb-341f89c286fb", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "c6f08f1a-cf95-4c3d-83fb-341f89c286fb", + "x-ms-routing-request-id": "WESTUS2:20210616T000340Z:c6f08f1a-cf95-4c3d-83fb-341f89c286fb" }, "ResponseBody": [] }, @@ -7103,7 +7241,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23d7882be87400aa1082f48860fe3144", "x-ms-return-client-request-id": "true" }, @@ -7112,17 +7250,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:04 GMT", + "Date": "Wed, 16 Jun 2021 00:03:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "567a2825-1ca9-4b9c-99c3-71cbde5964fe", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "567a2825-1ca9-4b9c-99c3-71cbde5964fe", - "x-ms-routing-request-id": "WESTUS2:20210519T185805Z:567a2825-1ca9-4b9c-99c3-71cbde5964fe" + "x-ms-correlation-request-id": "f6304250-1f40-4ea5-a78e-bee2d700fd50", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "f6304250-1f40-4ea5-a78e-bee2d700fd50", + "x-ms-routing-request-id": "WESTUS2:20210616T000341Z:f6304250-1f40-4ea5-a78e-bee2d700fd50" }, "ResponseBody": [] }, @@ -7131,7 +7269,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed6d2bf28da3b7a7e1ca2c90cedfbed1", "x-ms-return-client-request-id": "true" }, @@ -7140,17 +7278,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:05 GMT", + "Date": "Wed, 16 Jun 2021 00:03:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "037830c1-9530-405d-9df6-2529b7fb46af", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "037830c1-9530-405d-9df6-2529b7fb46af", - "x-ms-routing-request-id": "WESTUS2:20210519T185806Z:037830c1-9530-405d-9df6-2529b7fb46af" + "x-ms-correlation-request-id": "bf5ea182-0e92-4480-a97b-5eb783aa201a", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "bf5ea182-0e92-4480-a97b-5eb783aa201a", + "x-ms-routing-request-id": "WESTUS2:20210616T000342Z:bf5ea182-0e92-4480-a97b-5eb783aa201a" }, "ResponseBody": [] }, @@ -7159,7 +7297,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b22538ed1d4fe3f952e24354658aa28e", "x-ms-return-client-request-id": "true" }, @@ -7168,17 +7306,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:07 GMT", + "Date": "Wed, 16 Jun 2021 00:03:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "96585b94-3149-4218-9408-88f214957334", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "96585b94-3149-4218-9408-88f214957334", - "x-ms-routing-request-id": "WESTUS2:20210519T185807Z:96585b94-3149-4218-9408-88f214957334" + "x-ms-correlation-request-id": "958d5777-f931-417b-b206-7e1398b1ca0d", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "958d5777-f931-417b-b206-7e1398b1ca0d", + "x-ms-routing-request-id": "WESTUS2:20210616T000343Z:958d5777-f931-417b-b206-7e1398b1ca0d" }, "ResponseBody": [] }, @@ -7187,7 +7325,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cf87b0263579ecde12041a9bb193230", "x-ms-return-client-request-id": "true" }, @@ -7196,17 +7334,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:07 GMT", + "Date": "Wed, 16 Jun 2021 00:03:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800", - "x-ms-routing-request-id": "WESTUS2:20210519T185808Z:c1cd62a1-be5d-427a-9c2b-cb1d2f4e7800" + "x-ms-correlation-request-id": "a8195a88-35da-4457-874f-9bbba28a5fe0", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "a8195a88-35da-4457-874f-9bbba28a5fe0", + "x-ms-routing-request-id": "WESTUS2:20210616T000344Z:a8195a88-35da-4457-874f-9bbba28a5fe0" }, "ResponseBody": [] }, @@ -7215,7 +7353,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "289b22c47fd9d5f532899bc14a535256", "x-ms-return-client-request-id": "true" }, @@ -7224,17 +7362,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:08 GMT", + "Date": "Wed, 16 Jun 2021 00:03:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7048f336-9c9c-4c07-b4d0-31781d40289b", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "7048f336-9c9c-4c07-b4d0-31781d40289b", - "x-ms-routing-request-id": "WESTUS2:20210519T185809Z:7048f336-9c9c-4c07-b4d0-31781d40289b" + "x-ms-correlation-request-id": "6f1d3640-e896-47d1-8159-d37660eceb05", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "6f1d3640-e896-47d1-8159-d37660eceb05", + "x-ms-routing-request-id": "WESTUS2:20210616T000345Z:6f1d3640-e896-47d1-8159-d37660eceb05" }, "ResponseBody": [] }, @@ -7243,7 +7381,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "538e9d2882e78a7a6a86d02edb4f2838", "x-ms-return-client-request-id": "true" }, @@ -7252,17 +7390,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:10 GMT", + "Date": "Wed, 16 Jun 2021 00:03:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "289f206e-f5c8-4ea0-8db6-b42b78ddfa47", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "289f206e-f5c8-4ea0-8db6-b42b78ddfa47", - "x-ms-routing-request-id": "WESTUS2:20210519T185810Z:289f206e-f5c8-4ea0-8db6-b42b78ddfa47" + "x-ms-correlation-request-id": "c5c3e3f1-f36a-4ce2-8c5d-17e0aee54871", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "c5c3e3f1-f36a-4ce2-8c5d-17e0aee54871", + "x-ms-routing-request-id": "WESTUS2:20210616T000346Z:c5c3e3f1-f36a-4ce2-8c5d-17e0aee54871" }, "ResponseBody": [] }, @@ -7271,7 +7409,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "428f12af79ef83b585220acdc70c538d", "x-ms-return-client-request-id": "true" }, @@ -7280,17 +7418,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:11 GMT", + "Date": "Wed, 16 Jun 2021 00:03:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0390dff4-e4c8-4581-85a8-eda0cd6348ff", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "0390dff4-e4c8-4581-85a8-eda0cd6348ff", - "x-ms-routing-request-id": "WESTUS2:20210519T185811Z:0390dff4-e4c8-4581-85a8-eda0cd6348ff" + "x-ms-correlation-request-id": "cdff630b-16a1-4793-8eb0-25e7ece84ce2", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "cdff630b-16a1-4793-8eb0-25e7ece84ce2", + "x-ms-routing-request-id": "WESTUS2:20210616T000347Z:cdff630b-16a1-4793-8eb0-25e7ece84ce2" }, "ResponseBody": [] }, @@ -7299,7 +7437,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1e81ebcddf8b4249a810be52aec6f9e2", "x-ms-return-client-request-id": "true" }, @@ -7308,17 +7446,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:11 GMT", + "Date": "Wed, 16 Jun 2021 00:03:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f8f3cda6-0cd8-40ae-88da-1fdb28b60f32", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "f8f3cda6-0cd8-40ae-88da-1fdb28b60f32", - "x-ms-routing-request-id": "WESTUS2:20210519T185812Z:f8f3cda6-0cd8-40ae-88da-1fdb28b60f32" + "x-ms-correlation-request-id": "596fe21e-2721-4ab0-809d-c64293d14ac1", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "596fe21e-2721-4ab0-809d-c64293d14ac1", + "x-ms-routing-request-id": "WESTUS2:20210616T000348Z:596fe21e-2721-4ab0-809d-c64293d14ac1" }, "ResponseBody": [] }, @@ -7327,7 +7465,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "381163610fc3ae66e80bcdc478acc25d", "x-ms-return-client-request-id": "true" }, @@ -7336,17 +7474,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:12 GMT", + "Date": "Wed, 16 Jun 2021 00:03:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "690df648-6dd4-45b1-9575-d9cc5049921f", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "690df648-6dd4-45b1-9575-d9cc5049921f", - "x-ms-routing-request-id": "WESTUS2:20210519T185813Z:690df648-6dd4-45b1-9575-d9cc5049921f" + "x-ms-correlation-request-id": "8c658030-2900-482e-9569-26e3596f0f37", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "8c658030-2900-482e-9569-26e3596f0f37", + "x-ms-routing-request-id": "WESTUS2:20210616T000349Z:8c658030-2900-482e-9569-26e3596f0f37" }, "ResponseBody": [] }, @@ -7355,7 +7493,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f06043330aced0acc84d9adebb62d4bf", "x-ms-return-client-request-id": "true" }, @@ -7364,17 +7502,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:13 GMT", + "Date": "Wed, 16 Jun 2021 00:03:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "244ca34b-ab7c-401a-b5f2-63163341a40b", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "244ca34b-ab7c-401a-b5f2-63163341a40b", - "x-ms-routing-request-id": "WESTUS2:20210519T185814Z:244ca34b-ab7c-401a-b5f2-63163341a40b" + "x-ms-correlation-request-id": "25503d6d-45ca-47fe-b52d-3232e92accfc", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "25503d6d-45ca-47fe-b52d-3232e92accfc", + "x-ms-routing-request-id": "WESTUS2:20210616T000350Z:25503d6d-45ca-47fe-b52d-3232e92accfc" }, "ResponseBody": [] }, @@ -7383,7 +7521,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "646c27281bfbbec984d335801285cafb", "x-ms-return-client-request-id": "true" }, @@ -7392,17 +7530,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:15 GMT", + "Date": "Wed, 16 Jun 2021 00:03:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1fa2968a-104a-4183-be14-dd6b54747989", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "1fa2968a-104a-4183-be14-dd6b54747989", - "x-ms-routing-request-id": "WESTUS2:20210519T185815Z:1fa2968a-104a-4183-be14-dd6b54747989" + "x-ms-correlation-request-id": "cba89de9-4178-49fd-82ea-2a6ece9ad428", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "cba89de9-4178-49fd-82ea-2a6ece9ad428", + "x-ms-routing-request-id": "WESTUS2:20210616T000351Z:cba89de9-4178-49fd-82ea-2a6ece9ad428" }, "ResponseBody": [] }, @@ -7411,7 +7549,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a1f604e09655713b6406f757588f285", "x-ms-return-client-request-id": "true" }, @@ -7420,17 +7558,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:16 GMT", + "Date": "Wed, 16 Jun 2021 00:03:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8f04d914-ca6d-451f-8b56-08dbc98d3a46", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "8f04d914-ca6d-451f-8b56-08dbc98d3a46", - "x-ms-routing-request-id": "WESTUS2:20210519T185816Z:8f04d914-ca6d-451f-8b56-08dbc98d3a46" + "x-ms-correlation-request-id": "c77c04c6-0826-4f2f-b43a-7d5970444b25", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "c77c04c6-0826-4f2f-b43a-7d5970444b25", + "x-ms-routing-request-id": "WESTUS2:20210616T000352Z:c77c04c6-0826-4f2f-b43a-7d5970444b25" }, "ResponseBody": [] }, @@ -7439,7 +7577,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "509b0d365d40186179a26cfbd42bbe43", "x-ms-return-client-request-id": "true" }, @@ -7448,17 +7586,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:16 GMT", + "Date": "Wed, 16 Jun 2021 00:03:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "adfa26c1-cbd2-4c5b-b34a-7da979f88fdd", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "adfa26c1-cbd2-4c5b-b34a-7da979f88fdd", - "x-ms-routing-request-id": "WESTUS2:20210519T185817Z:adfa26c1-cbd2-4c5b-b34a-7da979f88fdd" + "x-ms-correlation-request-id": "84083cd4-1399-45a5-ad4a-62f0bf2899d5", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "84083cd4-1399-45a5-ad4a-62f0bf2899d5", + "x-ms-routing-request-id": "WESTUS2:20210616T000353Z:84083cd4-1399-45a5-ad4a-62f0bf2899d5" }, "ResponseBody": [] }, @@ -7467,7 +7605,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b909e8369431f5a1315adbbab5449fc", "x-ms-return-client-request-id": "true" }, @@ -7476,17 +7614,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:17 GMT", + "Date": "Wed, 16 Jun 2021 00:03:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "568a777c-616f-4b5c-8099-e3ba4e8156b6", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "568a777c-616f-4b5c-8099-e3ba4e8156b6", - "x-ms-routing-request-id": "WESTUS2:20210519T185818Z:568a777c-616f-4b5c-8099-e3ba4e8156b6" + "x-ms-correlation-request-id": "ad3a07f3-6cb4-4119-be67-8b8e9a705456", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "ad3a07f3-6cb4-4119-be67-8b8e9a705456", + "x-ms-routing-request-id": "WESTUS2:20210616T000354Z:ad3a07f3-6cb4-4119-be67-8b8e9a705456" }, "ResponseBody": [] }, @@ -7495,7 +7633,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "044ab0e07ae9f0bbfe06f1c29d18838b", "x-ms-return-client-request-id": "true" }, @@ -7504,17 +7642,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:18 GMT", + "Date": "Wed, 16 Jun 2021 00:03:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0542aa74-b18c-413d-815a-107e1d853646", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "0542aa74-b18c-413d-815a-107e1d853646", - "x-ms-routing-request-id": "WESTUS2:20210519T185819Z:0542aa74-b18c-413d-815a-107e1d853646" + "x-ms-correlation-request-id": "e3f774cf-7432-4a7a-b0ba-360d79a2ba9a", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "e3f774cf-7432-4a7a-b0ba-360d79a2ba9a", + "x-ms-routing-request-id": "WESTUS2:20210616T000355Z:e3f774cf-7432-4a7a-b0ba-360d79a2ba9a" }, "ResponseBody": [] }, @@ -7523,7 +7661,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6f22c8297f7cc41b37c3c2bb0a66c25", "x-ms-return-client-request-id": "true" }, @@ -7532,17 +7670,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:20 GMT", + "Date": "Wed, 16 Jun 2021 00:03:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "de02f034-69d3-4085-b35a-4495ac3e6321", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "de02f034-69d3-4085-b35a-4495ac3e6321", - "x-ms-routing-request-id": "WESTUS2:20210519T185820Z:de02f034-69d3-4085-b35a-4495ac3e6321" + "x-ms-correlation-request-id": "0b6fec48-41a8-4bd9-8d86-2af6796ee9c6", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "0b6fec48-41a8-4bd9-8d86-2af6796ee9c6", + "x-ms-routing-request-id": "WESTUS2:20210616T000356Z:0b6fec48-41a8-4bd9-8d86-2af6796ee9c6" }, "ResponseBody": [] }, @@ -7551,7 +7689,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "231a7059bae0095ae39f5c3c789781fb", "x-ms-return-client-request-id": "true" }, @@ -7560,17 +7698,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:21 GMT", + "Date": "Wed, 16 Jun 2021 00:03:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6acc859e-d0e5-4196-9025-6704fb834977", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "6acc859e-d0e5-4196-9025-6704fb834977", - "x-ms-routing-request-id": "WESTUS2:20210519T185821Z:6acc859e-d0e5-4196-9025-6704fb834977" + "x-ms-correlation-request-id": "162fd8bc-8b21-45ad-9a97-2fc5f6b2f16c", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "162fd8bc-8b21-45ad-9a97-2fc5f6b2f16c", + "x-ms-routing-request-id": "WESTUS2:20210616T000358Z:162fd8bc-8b21-45ad-9a97-2fc5f6b2f16c" }, "ResponseBody": [] }, @@ -7579,7 +7717,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f392292726149046e7e506d3d904058", "x-ms-return-client-request-id": "true" }, @@ -7588,17 +7726,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:22 GMT", + "Date": "Wed, 16 Jun 2021 00:03:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c495d94d-5d2f-4858-bffa-14a37e0cdbc1", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "c495d94d-5d2f-4858-bffa-14a37e0cdbc1", - "x-ms-routing-request-id": "WESTUS2:20210519T185822Z:c495d94d-5d2f-4858-bffa-14a37e0cdbc1" + "x-ms-correlation-request-id": "6cebec06-a19e-438e-8ce1-7a2c26640071", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "6cebec06-a19e-438e-8ce1-7a2c26640071", + "x-ms-routing-request-id": "WESTUS2:20210616T000359Z:6cebec06-a19e-438e-8ce1-7a2c26640071" }, "ResponseBody": [] }, @@ -7607,7 +7745,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d69cb9a5ffec8aad1e9f3573a04541b", "x-ms-return-client-request-id": "true" }, @@ -7616,17 +7754,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:23 GMT", + "Date": "Wed, 16 Jun 2021 00:03:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ff518ae8-0318-40f4-a0a2-f1b496a8d0a3", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "ff518ae8-0318-40f4-a0a2-f1b496a8d0a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185823Z:ff518ae8-0318-40f4-a0a2-f1b496a8d0a3" + "x-ms-correlation-request-id": "4f368866-7862-424a-82a2-c2f6afaf2f94", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "4f368866-7862-424a-82a2-c2f6afaf2f94", + "x-ms-routing-request-id": "WESTUS2:20210616T000400Z:4f368866-7862-424a-82a2-c2f6afaf2f94" }, "ResponseBody": [] }, @@ -7635,7 +7773,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d9941faed6de6c36bd0b46269edcb53", "x-ms-return-client-request-id": "true" }, @@ -7644,17 +7782,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:24 GMT", + "Date": "Wed, 16 Jun 2021 00:04:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "580e11c6-27ee-427c-8a2f-954787ed76b0", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "580e11c6-27ee-427c-8a2f-954787ed76b0", - "x-ms-routing-request-id": "WESTUS2:20210519T185824Z:580e11c6-27ee-427c-8a2f-954787ed76b0" + "x-ms-correlation-request-id": "7f2f47f3-7bbd-463c-bc20-5d9ee87efc84", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "7f2f47f3-7bbd-463c-bc20-5d9ee87efc84", + "x-ms-routing-request-id": "WESTUS2:20210616T000401Z:7f2f47f3-7bbd-463c-bc20-5d9ee87efc84" }, "ResponseBody": [] }, @@ -7663,7 +7801,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aca2045f542e32fc7870ad787fac0f6a", "x-ms-return-client-request-id": "true" }, @@ -7672,17 +7810,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:25 GMT", + "Date": "Wed, 16 Jun 2021 00:04:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a14d766b-feba-4592-98c9-0944b3dc5b5e", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "a14d766b-feba-4592-98c9-0944b3dc5b5e", - "x-ms-routing-request-id": "WESTUS2:20210519T185825Z:a14d766b-feba-4592-98c9-0944b3dc5b5e" + "x-ms-correlation-request-id": "fb3026e1-f2bc-4a5a-8fbe-0e9987af0075", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "fb3026e1-f2bc-4a5a-8fbe-0e9987af0075", + "x-ms-routing-request-id": "WESTUS2:20210616T000402Z:fb3026e1-f2bc-4a5a-8fbe-0e9987af0075" }, "ResponseBody": [] }, @@ -7691,7 +7829,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc72352ab2f7acea0782c12eaa475fe4", "x-ms-return-client-request-id": "true" }, @@ -7700,17 +7838,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:26 GMT", + "Date": "Wed, 16 Jun 2021 00:04:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0d3effe1-f617-4f6e-abf3-dac5a56112a3", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "0d3effe1-f617-4f6e-abf3-dac5a56112a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185826Z:0d3effe1-f617-4f6e-abf3-dac5a56112a3" + "x-ms-correlation-request-id": "66925e91-ca39-4554-a1a9-ed6f668123b3", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "66925e91-ca39-4554-a1a9-ed6f668123b3", + "x-ms-routing-request-id": "WESTUS2:20210616T000403Z:66925e91-ca39-4554-a1a9-ed6f668123b3" }, "ResponseBody": [] }, @@ -7719,7 +7857,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36f8a01da761a6ed446615fc404b67bf", "x-ms-return-client-request-id": "true" }, @@ -7728,17 +7866,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:27 GMT", + "Date": "Wed, 16 Jun 2021 00:04:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fb76eabc-96b0-4c6a-aecc-47a47c46e5cd", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "fb76eabc-96b0-4c6a-aecc-47a47c46e5cd", - "x-ms-routing-request-id": "WESTUS2:20210519T185827Z:fb76eabc-96b0-4c6a-aecc-47a47c46e5cd" + "x-ms-correlation-request-id": "d76e15aa-7a1a-4609-87c7-4ad1393d800e", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "d76e15aa-7a1a-4609-87c7-4ad1393d800e", + "x-ms-routing-request-id": "WESTUS2:20210616T000404Z:d76e15aa-7a1a-4609-87c7-4ad1393d800e" }, "ResponseBody": [] }, @@ -7747,7 +7885,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "34384ac1ce7aac5c19f6a4ab92cd8830", "x-ms-return-client-request-id": "true" }, @@ -7756,17 +7894,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:28 GMT", + "Date": "Wed, 16 Jun 2021 00:04:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "086ce072-0210-4b44-84bc-9dd87ae56732", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "086ce072-0210-4b44-84bc-9dd87ae56732", - "x-ms-routing-request-id": "WESTUS2:20210519T185828Z:086ce072-0210-4b44-84bc-9dd87ae56732" + "x-ms-correlation-request-id": "d7d8836b-e403-4eae-81d2-f768d4c0df30", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "d7d8836b-e403-4eae-81d2-f768d4c0df30", + "x-ms-routing-request-id": "WESTUS2:20210616T000405Z:d7d8836b-e403-4eae-81d2-f768d4c0df30" }, "ResponseBody": [] }, @@ -7775,7 +7913,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df5bc811d8b3820847ccb7909dee6cbc", "x-ms-return-client-request-id": "true" }, @@ -7784,17 +7922,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:29 GMT", + "Date": "Wed, 16 Jun 2021 00:04:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "63710268-d81d-4976-a9c9-91bac8d98291", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "63710268-d81d-4976-a9c9-91bac8d98291", - "x-ms-routing-request-id": "WESTUS2:20210519T185829Z:63710268-d81d-4976-a9c9-91bac8d98291" + "x-ms-correlation-request-id": "22b04ff3-bc2b-4a7a-9ff4-855772399022", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "22b04ff3-bc2b-4a7a-9ff4-855772399022", + "x-ms-routing-request-id": "WESTUS2:20210616T000406Z:22b04ff3-bc2b-4a7a-9ff4-855772399022" }, "ResponseBody": [] }, @@ -7803,7 +7941,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "606d021a2b0e4e6a444c1d6b02411377", "x-ms-return-client-request-id": "true" }, @@ -7812,17 +7950,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:30 GMT", + "Date": "Wed, 16 Jun 2021 00:04:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3c1c4632-82c8-417a-bd69-245f97ff2ba0", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "3c1c4632-82c8-417a-bd69-245f97ff2ba0", - "x-ms-routing-request-id": "WESTUS2:20210519T185830Z:3c1c4632-82c8-417a-bd69-245f97ff2ba0" + "x-ms-correlation-request-id": "fd88ed1e-8913-418c-a867-5ea5b73fb03c", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "fd88ed1e-8913-418c-a867-5ea5b73fb03c", + "x-ms-routing-request-id": "WESTUS2:20210616T000407Z:fd88ed1e-8913-418c-a867-5ea5b73fb03c" }, "ResponseBody": [] }, @@ -7831,7 +7969,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77eae4de88f0e80b41b5ecae16cb0e2a", "x-ms-return-client-request-id": "true" }, @@ -7840,17 +7978,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:31 GMT", + "Date": "Wed, 16 Jun 2021 00:04:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b4a04a15-a62d-427b-bb98-d06608f91af5", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "b4a04a15-a62d-427b-bb98-d06608f91af5", - "x-ms-routing-request-id": "WESTUS2:20210519T185831Z:b4a04a15-a62d-427b-bb98-d06608f91af5" + "x-ms-correlation-request-id": "3b2e7c21-7797-43c0-9baf-575cf237f3b3", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "3b2e7c21-7797-43c0-9baf-575cf237f3b3", + "x-ms-routing-request-id": "WESTUS2:20210616T000408Z:3b2e7c21-7797-43c0-9baf-575cf237f3b3" }, "ResponseBody": [] }, @@ -7859,7 +7997,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9090e88a2760e6215e0c9a67ba9d7f05", "x-ms-return-client-request-id": "true" }, @@ -7868,17 +8006,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:32 GMT", + "Date": "Wed, 16 Jun 2021 00:04:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "af7129f8-457c-45b8-8f68-d3dfb4b216c3", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "af7129f8-457c-45b8-8f68-d3dfb4b216c3", - "x-ms-routing-request-id": "WESTUS2:20210519T185833Z:af7129f8-457c-45b8-8f68-d3dfb4b216c3" + "x-ms-correlation-request-id": "d5b7605d-25ef-4725-a721-23b92ccdb769", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "d5b7605d-25ef-4725-a721-23b92ccdb769", + "x-ms-routing-request-id": "WESTUS2:20210616T000409Z:d5b7605d-25ef-4725-a721-23b92ccdb769" }, "ResponseBody": [] }, @@ -7887,7 +8025,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8b240b8f40392cbf6841e583ebb3778", "x-ms-return-client-request-id": "true" }, @@ -7896,17 +8034,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:33 GMT", + "Date": "Wed, 16 Jun 2021 00:04:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "38e50302-4b18-4a2e-81cf-c8ae4bd114f0", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "38e50302-4b18-4a2e-81cf-c8ae4bd114f0", - "x-ms-routing-request-id": "WESTUS2:20210519T185834Z:38e50302-4b18-4a2e-81cf-c8ae4bd114f0" + "x-ms-correlation-request-id": "387f6251-901d-421b-9cdb-e9f8e2193e6f", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "387f6251-901d-421b-9cdb-e9f8e2193e6f", + "x-ms-routing-request-id": "WESTUS2:20210616T000410Z:387f6251-901d-421b-9cdb-e9f8e2193e6f" }, "ResponseBody": [] }, @@ -7915,7 +8053,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ae1f23d83b0b617c20319e4eda42ea3", "x-ms-return-client-request-id": "true" }, @@ -7924,17 +8062,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:34 GMT", + "Date": "Wed, 16 Jun 2021 00:04:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "19a24ac5-6a9c-443b-869b-7ada3da8f4e8", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "19a24ac5-6a9c-443b-869b-7ada3da8f4e8", - "x-ms-routing-request-id": "WESTUS2:20210519T185835Z:19a24ac5-6a9c-443b-869b-7ada3da8f4e8" + "x-ms-correlation-request-id": "823ddcec-d08e-4ce3-8ac5-f41ee564b2fe", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "823ddcec-d08e-4ce3-8ac5-f41ee564b2fe", + "x-ms-routing-request-id": "WESTUS2:20210616T000411Z:823ddcec-d08e-4ce3-8ac5-f41ee564b2fe" }, "ResponseBody": [] }, @@ -7943,7 +8081,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d6f5e735551995271cfe99db08c8a8a2", "x-ms-return-client-request-id": "true" }, @@ -7952,17 +8090,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:35 GMT", + "Date": "Wed, 16 Jun 2021 00:04:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "542f6bf4-74d7-43dd-9630-f16c514460bb", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "542f6bf4-74d7-43dd-9630-f16c514460bb", - "x-ms-routing-request-id": "WESTUS2:20210519T185836Z:542f6bf4-74d7-43dd-9630-f16c514460bb" + "x-ms-correlation-request-id": "92f39197-361c-44e7-a471-b7313065574c", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "92f39197-361c-44e7-a471-b7313065574c", + "x-ms-routing-request-id": "WESTUS2:20210616T000412Z:92f39197-361c-44e7-a471-b7313065574c" }, "ResponseBody": [] }, @@ -7971,7 +8109,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c72922d465bc355429fbf6ffdbe7a452", "x-ms-return-client-request-id": "true" }, @@ -7980,17 +8118,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:36 GMT", + "Date": "Wed, 16 Jun 2021 00:04:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "eaafb3b0-14aa-423b-bdc0-5a41b32197db", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "eaafb3b0-14aa-423b-bdc0-5a41b32197db", - "x-ms-routing-request-id": "WESTUS2:20210519T185837Z:eaafb3b0-14aa-423b-bdc0-5a41b32197db" + "x-ms-correlation-request-id": "9717508a-da11-404f-b8f9-4d2fa20d37eb", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "9717508a-da11-404f-b8f9-4d2fa20d37eb", + "x-ms-routing-request-id": "WESTUS2:20210616T000413Z:9717508a-da11-404f-b8f9-4d2fa20d37eb" }, "ResponseBody": [] }, @@ -7999,7 +8137,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57227b5661c6e75fcb4bfdb2e93badf9", "x-ms-return-client-request-id": "true" }, @@ -8008,17 +8146,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:37 GMT", + "Date": "Wed, 16 Jun 2021 00:04:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5e487a7a-79a4-4c32-80ff-8fe3e677f1bc", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "5e487a7a-79a4-4c32-80ff-8fe3e677f1bc", - "x-ms-routing-request-id": "WESTUS2:20210519T185838Z:5e487a7a-79a4-4c32-80ff-8fe3e677f1bc" + "x-ms-correlation-request-id": "e9ca199d-19e0-46eb-859c-658e2e1f37ae", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "e9ca199d-19e0-46eb-859c-658e2e1f37ae", + "x-ms-routing-request-id": "WESTUS2:20210616T000414Z:e9ca199d-19e0-46eb-859c-658e2e1f37ae" }, "ResponseBody": [] }, @@ -8027,7 +8165,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb0f765b667ad0e692bfac1d5f27b934", "x-ms-return-client-request-id": "true" }, @@ -8036,17 +8174,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:38 GMT", + "Date": "Wed, 16 Jun 2021 00:04:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e02087f2-e121-4e94-8995-f3e50330cc6d", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "e02087f2-e121-4e94-8995-f3e50330cc6d", - "x-ms-routing-request-id": "WESTUS2:20210519T185839Z:e02087f2-e121-4e94-8995-f3e50330cc6d" + "x-ms-correlation-request-id": "e4d273ac-a6c8-4d21-a971-899783a8abc0", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "e4d273ac-a6c8-4d21-a971-899783a8abc0", + "x-ms-routing-request-id": "WESTUS2:20210616T000415Z:e4d273ac-a6c8-4d21-a971-899783a8abc0" }, "ResponseBody": [] }, @@ -8055,7 +8193,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d84475951a573dbc241fc7067a24ced", "x-ms-return-client-request-id": "true" }, @@ -8064,17 +8202,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:39 GMT", + "Date": "Wed, 16 Jun 2021 00:04:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f1767705-1b49-4c49-8cbe-9b91b57e01ce", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "f1767705-1b49-4c49-8cbe-9b91b57e01ce", - "x-ms-routing-request-id": "WESTUS2:20210519T185840Z:f1767705-1b49-4c49-8cbe-9b91b57e01ce" + "x-ms-correlation-request-id": "8fd2da50-b357-49bc-aaa7-b251a1b84cb8", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "8fd2da50-b357-49bc-aaa7-b251a1b84cb8", + "x-ms-routing-request-id": "WESTUS2:20210616T000416Z:8fd2da50-b357-49bc-aaa7-b251a1b84cb8" }, "ResponseBody": [] }, @@ -8083,7 +8221,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64a4fc4ed9d8f0d79452c406b44288a4", "x-ms-return-client-request-id": "true" }, @@ -8092,17 +8230,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:40 GMT", + "Date": "Wed, 16 Jun 2021 00:04:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "333bb2fa-623a-4796-b289-bf604e5d691b", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "333bb2fa-623a-4796-b289-bf604e5d691b", - "x-ms-routing-request-id": "WESTUS2:20210519T185841Z:333bb2fa-623a-4796-b289-bf604e5d691b" + "x-ms-correlation-request-id": "436ad2b2-1d31-460e-b255-aefc12b8c87b", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "436ad2b2-1d31-460e-b255-aefc12b8c87b", + "x-ms-routing-request-id": "WESTUS2:20210616T000417Z:436ad2b2-1d31-460e-b255-aefc12b8c87b" }, "ResponseBody": [] }, @@ -8111,7 +8249,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a258c9921fb609539a9c0838697668f0", "x-ms-return-client-request-id": "true" }, @@ -8120,17 +8258,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:41 GMT", + "Date": "Wed, 16 Jun 2021 00:04:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "18453c90-e8e1-4136-9581-9488b4255195", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "18453c90-e8e1-4136-9581-9488b4255195", - "x-ms-routing-request-id": "WESTUS2:20210519T185842Z:18453c90-e8e1-4136-9581-9488b4255195" + "x-ms-correlation-request-id": "fac60d46-fca0-47d6-b5d7-2dc4bea80f67", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "fac60d46-fca0-47d6-b5d7-2dc4bea80f67", + "x-ms-routing-request-id": "WESTUS2:20210616T000418Z:fac60d46-fca0-47d6-b5d7-2dc4bea80f67" }, "ResponseBody": [] }, @@ -8139,7 +8277,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "63cfbe735482805c6f94f9538cd5be80", "x-ms-return-client-request-id": "true" }, @@ -8148,17 +8286,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:42 GMT", + "Date": "Wed, 16 Jun 2021 00:04:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5e556cc0-6dfe-489e-a944-05357b8eece6", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "5e556cc0-6dfe-489e-a944-05357b8eece6", - "x-ms-routing-request-id": "WESTUS2:20210519T185843Z:5e556cc0-6dfe-489e-a944-05357b8eece6" + "x-ms-correlation-request-id": "0e61c544-6fae-4390-b3db-72285ebad80a", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "0e61c544-6fae-4390-b3db-72285ebad80a", + "x-ms-routing-request-id": "WESTUS2:20210616T000419Z:0e61c544-6fae-4390-b3db-72285ebad80a" }, "ResponseBody": [] }, @@ -8167,7 +8305,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ede58b9a9492e37a89aca3cd19f861e", "x-ms-return-client-request-id": "true" }, @@ -8176,17 +8314,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:43 GMT", + "Date": "Wed, 16 Jun 2021 00:04:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8735b034-8639-4e14-b6d2-5b457b86bcba", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "8735b034-8639-4e14-b6d2-5b457b86bcba", - "x-ms-routing-request-id": "WESTUS2:20210519T185844Z:8735b034-8639-4e14-b6d2-5b457b86bcba" + "x-ms-correlation-request-id": "35b1cae1-86e4-437d-88a9-d2a2501d628c", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "35b1cae1-86e4-437d-88a9-d2a2501d628c", + "x-ms-routing-request-id": "WESTUS2:20210616T000420Z:35b1cae1-86e4-437d-88a9-d2a2501d628c" }, "ResponseBody": [] }, @@ -8195,7 +8333,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f692d3e924723d216cd8322226007dc5", "x-ms-return-client-request-id": "true" }, @@ -8204,17 +8342,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:45 GMT", + "Date": "Wed, 16 Jun 2021 00:04:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4baf2320-7e39-4548-ae83-9db900b66ff9", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "4baf2320-7e39-4548-ae83-9db900b66ff9", - "x-ms-routing-request-id": "WESTUS2:20210519T185845Z:4baf2320-7e39-4548-ae83-9db900b66ff9" + "x-ms-correlation-request-id": "ae295946-258c-4f9c-a0cf-ede78da7065d", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "ae295946-258c-4f9c-a0cf-ede78da7065d", + "x-ms-routing-request-id": "WESTUS2:20210616T000421Z:ae295946-258c-4f9c-a0cf-ede78da7065d" }, "ResponseBody": [] }, @@ -8223,7 +8361,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "117e87ddca97c9a787a1bbe88a20afd0", "x-ms-return-client-request-id": "true" }, @@ -8232,17 +8370,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:46 GMT", + "Date": "Wed, 16 Jun 2021 00:04:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7", - "x-ms-routing-request-id": "WESTUS2:20210519T185846Z:0f157ffc-7e9c-40e2-a6af-8ca4ed9bfcb7" + "x-ms-correlation-request-id": "f758b73c-3938-401a-9570-9f635734ba1e", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "f758b73c-3938-401a-9570-9f635734ba1e", + "x-ms-routing-request-id": "WESTUS2:20210616T000422Z:f758b73c-3938-401a-9570-9f635734ba1e" }, "ResponseBody": [] }, @@ -8251,7 +8389,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b869db0ec842950e37a13171771407a7", "x-ms-return-client-request-id": "true" }, @@ -8260,17 +8398,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:47 GMT", + "Date": "Wed, 16 Jun 2021 00:04:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "56557ea6-14cd-40f9-8e3c-83d651d480cb", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "56557ea6-14cd-40f9-8e3c-83d651d480cb", - "x-ms-routing-request-id": "WESTUS2:20210519T185847Z:56557ea6-14cd-40f9-8e3c-83d651d480cb" + "x-ms-correlation-request-id": "7a1d79b2-6b2f-43a9-b192-e00dad680dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "7a1d79b2-6b2f-43a9-b192-e00dad680dc5", + "x-ms-routing-request-id": "WESTUS2:20210616T000423Z:7a1d79b2-6b2f-43a9-b192-e00dad680dc5" }, "ResponseBody": [] }, @@ -8279,7 +8417,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "495e041d74201f862cc96ed16939b24c", "x-ms-return-client-request-id": "true" }, @@ -8288,17 +8426,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:47 GMT", + "Date": "Wed, 16 Jun 2021 00:04:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d8447ea4-9239-491c-9d52-c6910f4c21a3", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "d8447ea4-9239-491c-9d52-c6910f4c21a3", - "x-ms-routing-request-id": "WESTUS2:20210519T185848Z:d8447ea4-9239-491c-9d52-c6910f4c21a3" + "x-ms-correlation-request-id": "81e61dc7-099a-4e86-ad1a-84450db940cc", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "81e61dc7-099a-4e86-ad1a-84450db940cc", + "x-ms-routing-request-id": "WESTUS2:20210616T000424Z:81e61dc7-099a-4e86-ad1a-84450db940cc" }, "ResponseBody": [] }, @@ -8307,7 +8445,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a146129c497158279e9daf698355272", "x-ms-return-client-request-id": "true" }, @@ -8316,17 +8454,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:48 GMT", + "Date": "Wed, 16 Jun 2021 00:04:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0d7b3e08-86a1-42de-9eb5-1ced0056b2b4", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "0d7b3e08-86a1-42de-9eb5-1ced0056b2b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185849Z:0d7b3e08-86a1-42de-9eb5-1ced0056b2b4" + "x-ms-correlation-request-id": "f418ff3c-4ebe-4a6a-87d4-3ec2a2ab2568", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "f418ff3c-4ebe-4a6a-87d4-3ec2a2ab2568", + "x-ms-routing-request-id": "WESTUS2:20210616T000425Z:f418ff3c-4ebe-4a6a-87d4-3ec2a2ab2568" }, "ResponseBody": [] }, @@ -8335,7 +8473,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85ca139965c199b054498c79593c2bfd", "x-ms-return-client-request-id": "true" }, @@ -8344,17 +8482,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:49 GMT", + "Date": "Wed, 16 Jun 2021 00:04:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "53a35c01-0a15-4c10-93c5-beffc1ffc7e2", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "53a35c01-0a15-4c10-93c5-beffc1ffc7e2", - "x-ms-routing-request-id": "WESTUS2:20210519T185850Z:53a35c01-0a15-4c10-93c5-beffc1ffc7e2" + "x-ms-correlation-request-id": "67d56fa2-8664-4b22-b36e-2e13e00e14f6", + "x-ms-ratelimit-remaining-subscription-reads": "11532", + "x-ms-request-id": "67d56fa2-8664-4b22-b36e-2e13e00e14f6", + "x-ms-routing-request-id": "WESTUS2:20210616T000426Z:67d56fa2-8664-4b22-b36e-2e13e00e14f6" }, "ResponseBody": [] }, @@ -8363,7 +8501,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1548e5eebd0059108148d0369a9087f6", "x-ms-return-client-request-id": "true" }, @@ -8372,17 +8510,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:50 GMT", + "Date": "Wed, 16 Jun 2021 00:04:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "429d2e87-ee5a-45ba-9a01-ff25011618fd", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "429d2e87-ee5a-45ba-9a01-ff25011618fd", - "x-ms-routing-request-id": "WESTUS2:20210519T185851Z:429d2e87-ee5a-45ba-9a01-ff25011618fd" + "x-ms-correlation-request-id": "71274435-6e35-4d88-a00b-3ab4f9a189f7", + "x-ms-ratelimit-remaining-subscription-reads": "11530", + "x-ms-request-id": "71274435-6e35-4d88-a00b-3ab4f9a189f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000427Z:71274435-6e35-4d88-a00b-3ab4f9a189f7" }, "ResponseBody": [] }, @@ -8391,7 +8529,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5538fb762c6ec38ab17bf64d3809bb3c", "x-ms-return-client-request-id": "true" }, @@ -8400,17 +8538,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:51 GMT", + "Date": "Wed, 16 Jun 2021 00:04:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "03ced9c3-30c3-4dab-a259-a10ccbf53924", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "03ced9c3-30c3-4dab-a259-a10ccbf53924", - "x-ms-routing-request-id": "WESTUS2:20210519T185852Z:03ced9c3-30c3-4dab-a259-a10ccbf53924" + "x-ms-correlation-request-id": "eae07414-57f6-4cc9-8973-69b66d42c508", + "x-ms-ratelimit-remaining-subscription-reads": "11528", + "x-ms-request-id": "eae07414-57f6-4cc9-8973-69b66d42c508", + "x-ms-routing-request-id": "WESTUS2:20210616T000429Z:eae07414-57f6-4cc9-8973-69b66d42c508" }, "ResponseBody": [] }, @@ -8419,7 +8557,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b308dcbd3ceddc72027104789579fec4", "x-ms-return-client-request-id": "true" }, @@ -8428,17 +8566,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:52 GMT", + "Date": "Wed, 16 Jun 2021 00:04:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "63774f6e-a816-4fdc-9ffe-cfb29981e799", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "63774f6e-a816-4fdc-9ffe-cfb29981e799", - "x-ms-routing-request-id": "WESTUS2:20210519T185853Z:63774f6e-a816-4fdc-9ffe-cfb29981e799" + "x-ms-correlation-request-id": "efba91f0-5bcb-444f-8a09-9c20595ff070", + "x-ms-ratelimit-remaining-subscription-reads": "11526", + "x-ms-request-id": "efba91f0-5bcb-444f-8a09-9c20595ff070", + "x-ms-routing-request-id": "WESTUS2:20210616T000430Z:efba91f0-5bcb-444f-8a09-9c20595ff070" }, "ResponseBody": [] }, @@ -8447,7 +8585,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e0295c1d604c18f5a846485c6c32178", "x-ms-return-client-request-id": "true" }, @@ -8456,17 +8594,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:53 GMT", + "Date": "Wed, 16 Jun 2021 00:04:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1b2352eb-bb78-4016-9286-dea0bd77cef7", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "1b2352eb-bb78-4016-9286-dea0bd77cef7", - "x-ms-routing-request-id": "WESTUS2:20210519T185854Z:1b2352eb-bb78-4016-9286-dea0bd77cef7" + "x-ms-correlation-request-id": "dd8e7065-091d-469a-b035-80f16d18ffb3", + "x-ms-ratelimit-remaining-subscription-reads": "11524", + "x-ms-request-id": "dd8e7065-091d-469a-b035-80f16d18ffb3", + "x-ms-routing-request-id": "WESTUS2:20210616T000431Z:dd8e7065-091d-469a-b035-80f16d18ffb3" }, "ResponseBody": [] }, @@ -8475,7 +8613,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bd79938dd4883909885c53fd28122d37", "x-ms-return-client-request-id": "true" }, @@ -8484,17 +8622,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:54 GMT", + "Date": "Wed, 16 Jun 2021 00:04:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c79ab204-7468-4f22-9f31-19c75d3b9591", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "c79ab204-7468-4f22-9f31-19c75d3b9591", - "x-ms-routing-request-id": "WESTUS2:20210519T185855Z:c79ab204-7468-4f22-9f31-19c75d3b9591" + "x-ms-correlation-request-id": "215fe68a-b59f-41f0-864b-806e1a24fbf9", + "x-ms-ratelimit-remaining-subscription-reads": "11522", + "x-ms-request-id": "215fe68a-b59f-41f0-864b-806e1a24fbf9", + "x-ms-routing-request-id": "WESTUS2:20210616T000432Z:215fe68a-b59f-41f0-864b-806e1a24fbf9" }, "ResponseBody": [] }, @@ -8503,7 +8641,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a28b327c5d06e7384c475868d8ed153f", "x-ms-return-client-request-id": "true" }, @@ -8512,17 +8650,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:55 GMT", + "Date": "Wed, 16 Jun 2021 00:04:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "330f03c1-7e53-4605-8ead-aa53b1a4031d", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "330f03c1-7e53-4605-8ead-aa53b1a4031d", - "x-ms-routing-request-id": "WESTUS2:20210519T185856Z:330f03c1-7e53-4605-8ead-aa53b1a4031d" + "x-ms-correlation-request-id": "5b23a6fa-9f6e-420d-a0e7-ecf2d8dd85c9", + "x-ms-ratelimit-remaining-subscription-reads": "11520", + "x-ms-request-id": "5b23a6fa-9f6e-420d-a0e7-ecf2d8dd85c9", + "x-ms-routing-request-id": "WESTUS2:20210616T000433Z:5b23a6fa-9f6e-420d-a0e7-ecf2d8dd85c9" }, "ResponseBody": [] }, @@ -8531,7 +8669,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02eb8b4f4100ed3b8bc9d5a882929848", "x-ms-return-client-request-id": "true" }, @@ -8540,17 +8678,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:56 GMT", + "Date": "Wed, 16 Jun 2021 00:04:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ec75f820-3b63-4214-8456-55f60491e1fe", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "ec75f820-3b63-4214-8456-55f60491e1fe", - "x-ms-routing-request-id": "WESTUS2:20210519T185857Z:ec75f820-3b63-4214-8456-55f60491e1fe" + "x-ms-correlation-request-id": "d368181e-8483-4fdc-a606-773048c0a695", + "x-ms-ratelimit-remaining-subscription-reads": "11518", + "x-ms-request-id": "d368181e-8483-4fdc-a606-773048c0a695", + "x-ms-routing-request-id": "WESTUS2:20210616T000434Z:d368181e-8483-4fdc-a606-773048c0a695" }, "ResponseBody": [] }, @@ -8559,7 +8697,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94092c577e372f715b9170417ba0609b", "x-ms-return-client-request-id": "true" }, @@ -8568,17 +8706,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:57 GMT", + "Date": "Wed, 16 Jun 2021 00:04:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "af08d293-3573-453c-b166-d4ef52c7e662", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "af08d293-3573-453c-b166-d4ef52c7e662", - "x-ms-routing-request-id": "WESTUS2:20210519T185858Z:af08d293-3573-453c-b166-d4ef52c7e662" + "x-ms-correlation-request-id": "1e22f1b1-e1a7-471c-9623-44f97e3f1d28", + "x-ms-ratelimit-remaining-subscription-reads": "11516", + "x-ms-request-id": "1e22f1b1-e1a7-471c-9623-44f97e3f1d28", + "x-ms-routing-request-id": "WESTUS2:20210616T000435Z:1e22f1b1-e1a7-471c-9623-44f97e3f1d28" }, "ResponseBody": [] }, @@ -8587,7 +8725,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dad13462b263a37f69e163d888f64ba", "x-ms-return-client-request-id": "true" }, @@ -8596,17 +8734,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:58 GMT", + "Date": "Wed, 16 Jun 2021 00:04:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "50f6b44c-ac71-4fde-b36a-3e4d90732750", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "50f6b44c-ac71-4fde-b36a-3e4d90732750", - "x-ms-routing-request-id": "WESTUS2:20210519T185859Z:50f6b44c-ac71-4fde-b36a-3e4d90732750" + "x-ms-correlation-request-id": "054f81a7-3c46-4d51-9eb0-e860e99cab30", + "x-ms-ratelimit-remaining-subscription-reads": "11514", + "x-ms-request-id": "054f81a7-3c46-4d51-9eb0-e860e99cab30", + "x-ms-routing-request-id": "WESTUS2:20210616T000436Z:054f81a7-3c46-4d51-9eb0-e860e99cab30" }, "ResponseBody": [] }, @@ -8615,7 +8753,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac1110ae81e3d10819bba76ed0fa71eb", "x-ms-return-client-request-id": "true" }, @@ -8624,17 +8762,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:59 GMT", + "Date": "Wed, 16 Jun 2021 00:04:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0", - "x-ms-routing-request-id": "WESTUS2:20210519T185900Z:33b2ebfa-fa21-42f8-a3b7-50a1778cd4f0" + "x-ms-correlation-request-id": "a7c05e19-17c7-403c-ab3f-ef42e6dd7d41", + "x-ms-ratelimit-remaining-subscription-reads": "11512", + "x-ms-request-id": "a7c05e19-17c7-403c-ab3f-ef42e6dd7d41", + "x-ms-routing-request-id": "WESTUS2:20210616T000437Z:a7c05e19-17c7-403c-ab3f-ef42e6dd7d41" }, "ResponseBody": [] }, @@ -8643,7 +8781,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f613968fbe52b21f4ce9d986734a7cb", "x-ms-return-client-request-id": "true" }, @@ -8652,17 +8790,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:01 GMT", + "Date": "Wed, 16 Jun 2021 00:04:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "85f3459f-c5a6-4ec7-a9c9-e10f795f7041", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "85f3459f-c5a6-4ec7-a9c9-e10f795f7041", - "x-ms-routing-request-id": "WESTUS2:20210519T185901Z:85f3459f-c5a6-4ec7-a9c9-e10f795f7041" + "x-ms-correlation-request-id": "46f9b806-8ee8-4fb1-aae0-24d41cb353ca", + "x-ms-ratelimit-remaining-subscription-reads": "11510", + "x-ms-request-id": "46f9b806-8ee8-4fb1-aae0-24d41cb353ca", + "x-ms-routing-request-id": "WESTUS2:20210616T000438Z:46f9b806-8ee8-4fb1-aae0-24d41cb353ca" }, "ResponseBody": [] }, @@ -8671,7 +8809,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b92b62db48ec5b70adb836a84c86afb", "x-ms-return-client-request-id": "true" }, @@ -8680,17 +8818,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:02 GMT", + "Date": "Wed, 16 Jun 2021 00:04:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ee133bcb-bc5b-496c-b9ff-d51687543eed", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "ee133bcb-bc5b-496c-b9ff-d51687543eed", - "x-ms-routing-request-id": "WESTUS2:20210519T185903Z:ee133bcb-bc5b-496c-b9ff-d51687543eed" + "x-ms-correlation-request-id": "9c33183a-68ae-4a5d-9d26-c501dcd9d577", + "x-ms-ratelimit-remaining-subscription-reads": "11508", + "x-ms-request-id": "9c33183a-68ae-4a5d-9d26-c501dcd9d577", + "x-ms-routing-request-id": "WESTUS2:20210616T000439Z:9c33183a-68ae-4a5d-9d26-c501dcd9d577" }, "ResponseBody": [] }, @@ -8699,7 +8837,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ed52b2df42db3d4eee5b715e37069e5", "x-ms-return-client-request-id": "true" }, @@ -8708,17 +8846,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:03 GMT", + "Date": "Wed, 16 Jun 2021 00:04:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8e578700-a58c-4307-8659-ceb235d4310a", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "8e578700-a58c-4307-8659-ceb235d4310a", - "x-ms-routing-request-id": "WESTUS2:20210519T185904Z:8e578700-a58c-4307-8659-ceb235d4310a" + "x-ms-correlation-request-id": "d4298ef6-d88a-4130-b229-dfd528c364ad", + "x-ms-ratelimit-remaining-subscription-reads": "11506", + "x-ms-request-id": "d4298ef6-d88a-4130-b229-dfd528c364ad", + "x-ms-routing-request-id": "WESTUS2:20210616T000440Z:d4298ef6-d88a-4130-b229-dfd528c364ad" }, "ResponseBody": [] }, @@ -8727,7 +8865,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a41db140668b35d819c640978b6a72b", "x-ms-return-client-request-id": "true" }, @@ -8736,17 +8874,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:05 GMT", + "Date": "Wed, 16 Jun 2021 00:04:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "974ad416-be1b-454f-8b22-ee2e03dd6d5f", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-request-id": "974ad416-be1b-454f-8b22-ee2e03dd6d5f", - "x-ms-routing-request-id": "WESTUS2:20210519T185905Z:974ad416-be1b-454f-8b22-ee2e03dd6d5f" + "x-ms-correlation-request-id": "40758254-53bc-4aca-ae79-2d18cc5f4dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11504", + "x-ms-request-id": "40758254-53bc-4aca-ae79-2d18cc5f4dc5", + "x-ms-routing-request-id": "WESTUS2:20210616T000441Z:40758254-53bc-4aca-ae79-2d18cc5f4dc5" }, "ResponseBody": [] }, @@ -8755,7 +8893,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c6ba164585f389de1de7ca8fca2e19a", "x-ms-return-client-request-id": "true" }, @@ -8764,17 +8902,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:06 GMT", + "Date": "Wed, 16 Jun 2021 00:04:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c16421bc-c4ca-4b14-afcd-86c888b13896", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "c16421bc-c4ca-4b14-afcd-86c888b13896", - "x-ms-routing-request-id": "WESTUS2:20210519T185906Z:c16421bc-c4ca-4b14-afcd-86c888b13896" + "x-ms-correlation-request-id": "db08d46d-de91-4111-a026-c145dbb2f632", + "x-ms-ratelimit-remaining-subscription-reads": "11502", + "x-ms-request-id": "db08d46d-de91-4111-a026-c145dbb2f632", + "x-ms-routing-request-id": "WESTUS2:20210616T000442Z:db08d46d-de91-4111-a026-c145dbb2f632" }, "ResponseBody": [] }, @@ -8783,7 +8921,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8569e7150872693ce21cc908fca3b38", "x-ms-return-client-request-id": "true" }, @@ -8792,17 +8930,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:07 GMT", + "Date": "Wed, 16 Jun 2021 00:04:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b3a1fb73-274e-4ca5-885b-7cc72a2cd552", - "x-ms-ratelimit-remaining-subscription-reads": "11707", - "x-ms-request-id": "b3a1fb73-274e-4ca5-885b-7cc72a2cd552", - "x-ms-routing-request-id": "WESTUS2:20210519T185907Z:b3a1fb73-274e-4ca5-885b-7cc72a2cd552" + "x-ms-correlation-request-id": "38658263-9051-4358-a19c-c28e2ce8f83e", + "x-ms-ratelimit-remaining-subscription-reads": "11500", + "x-ms-request-id": "38658263-9051-4358-a19c-c28e2ce8f83e", + "x-ms-routing-request-id": "WESTUS2:20210616T000443Z:38658263-9051-4358-a19c-c28e2ce8f83e" }, "ResponseBody": [] }, @@ -8811,7 +8949,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41b18c3e2d04bb853e0838898ab4b7df", "x-ms-return-client-request-id": "true" }, @@ -8820,17 +8958,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:08 GMT", + "Date": "Wed, 16 Jun 2021 00:04:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c0ba73cc-3a89-49c2-84c7-90b10179d238", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "c0ba73cc-3a89-49c2-84c7-90b10179d238", - "x-ms-routing-request-id": "WESTUS2:20210519T185908Z:c0ba73cc-3a89-49c2-84c7-90b10179d238" + "x-ms-correlation-request-id": "b4861891-9bca-4773-9538-1c0501a7aa70", + "x-ms-ratelimit-remaining-subscription-reads": "11498", + "x-ms-request-id": "b4861891-9bca-4773-9538-1c0501a7aa70", + "x-ms-routing-request-id": "WESTUS2:20210616T000444Z:b4861891-9bca-4773-9538-1c0501a7aa70" }, "ResponseBody": [] }, @@ -8839,7 +8977,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d997cabbff6013a30e446d3d8c0ca816", "x-ms-return-client-request-id": "true" }, @@ -8848,17 +8986,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:09 GMT", + "Date": "Wed, 16 Jun 2021 00:04:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c6ede6dd-0f33-4d22-929a-535b7a2a8d22", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "c6ede6dd-0f33-4d22-929a-535b7a2a8d22", - "x-ms-routing-request-id": "WESTUS2:20210519T185909Z:c6ede6dd-0f33-4d22-929a-535b7a2a8d22" + "x-ms-correlation-request-id": "e7bb96cf-2c9f-444a-aa21-6e1c9f352edc", + "x-ms-ratelimit-remaining-subscription-reads": "11496", + "x-ms-request-id": "e7bb96cf-2c9f-444a-aa21-6e1c9f352edc", + "x-ms-routing-request-id": "WESTUS2:20210616T000445Z:e7bb96cf-2c9f-444a-aa21-6e1c9f352edc" }, "ResponseBody": [] }, @@ -8867,7 +9005,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "706a43a39ff14496189b697f17099c19", "x-ms-return-client-request-id": "true" }, @@ -8876,17 +9014,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:10 GMT", + "Date": "Wed, 16 Jun 2021 00:04:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0ef986cc-78a3-4c2e-98ba-2b15489d9bb2", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "0ef986cc-78a3-4c2e-98ba-2b15489d9bb2", - "x-ms-routing-request-id": "WESTUS2:20210519T185910Z:0ef986cc-78a3-4c2e-98ba-2b15489d9bb2" + "x-ms-correlation-request-id": "3e902195-8c43-413f-9405-2673057388ee", + "x-ms-ratelimit-remaining-subscription-reads": "11494", + "x-ms-request-id": "3e902195-8c43-413f-9405-2673057388ee", + "x-ms-routing-request-id": "WESTUS2:20210616T000446Z:3e902195-8c43-413f-9405-2673057388ee" }, "ResponseBody": [] }, @@ -8895,7 +9033,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c5d5ed6a61333ed8e89d33bfbf472f31", "x-ms-return-client-request-id": "true" }, @@ -8904,17 +9042,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:11 GMT", + "Date": "Wed, 16 Jun 2021 00:04:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "54e5b812-d4e8-4357-96b0-759a9b9b0386", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "54e5b812-d4e8-4357-96b0-759a9b9b0386", - "x-ms-routing-request-id": "WESTUS2:20210519T185911Z:54e5b812-d4e8-4357-96b0-759a9b9b0386" + "x-ms-correlation-request-id": "edf17f1a-b02b-4d01-bfe4-15aa218f2190", + "x-ms-ratelimit-remaining-subscription-reads": "11492", + "x-ms-request-id": "edf17f1a-b02b-4d01-bfe4-15aa218f2190", + "x-ms-routing-request-id": "WESTUS2:20210616T000447Z:edf17f1a-b02b-4d01-bfe4-15aa218f2190" }, "ResponseBody": [] }, @@ -8923,7 +9061,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46e6215f464a1cee3453c1c49524fc04", "x-ms-return-client-request-id": "true" }, @@ -8932,17 +9070,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:12 GMT", + "Date": "Wed, 16 Jun 2021 00:04:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "74c2f03c-c856-4612-8df1-8a996584cf3a", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "74c2f03c-c856-4612-8df1-8a996584cf3a", - "x-ms-routing-request-id": "WESTUS2:20210519T185912Z:74c2f03c-c856-4612-8df1-8a996584cf3a" + "x-ms-correlation-request-id": "ac319958-7a4b-4228-9d3f-e61796168bc4", + "x-ms-ratelimit-remaining-subscription-reads": "11490", + "x-ms-request-id": "ac319958-7a4b-4228-9d3f-e61796168bc4", + "x-ms-routing-request-id": "WESTUS2:20210616T000448Z:ac319958-7a4b-4228-9d3f-e61796168bc4" }, "ResponseBody": [] }, @@ -8951,7 +9089,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ed353a8e33741e36b2b88536bd684d0", "x-ms-return-client-request-id": "true" }, @@ -8960,17 +9098,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:13 GMT", + "Date": "Wed, 16 Jun 2021 00:04:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "93525743-2736-4cf2-97e3-8739a6ab1722", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "93525743-2736-4cf2-97e3-8739a6ab1722", - "x-ms-routing-request-id": "WESTUS2:20210519T185913Z:93525743-2736-4cf2-97e3-8739a6ab1722" + "x-ms-correlation-request-id": "4a78c0a6-7d36-42e4-94d9-3e55887df7dc", + "x-ms-ratelimit-remaining-subscription-reads": "11488", + "x-ms-request-id": "4a78c0a6-7d36-42e4-94d9-3e55887df7dc", + "x-ms-routing-request-id": "WESTUS2:20210616T000449Z:4a78c0a6-7d36-42e4-94d9-3e55887df7dc" }, "ResponseBody": [] }, @@ -8979,7 +9117,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f61f376c562323cfffb991df9f13a8c3", "x-ms-return-client-request-id": "true" }, @@ -8988,17 +9126,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:14 GMT", + "Date": "Wed, 16 Jun 2021 00:04:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ce9e60bf-840f-4dc2-90c4-4249ea9723b0", - "x-ms-ratelimit-remaining-subscription-reads": "11693", - "x-ms-request-id": "ce9e60bf-840f-4dc2-90c4-4249ea9723b0", - "x-ms-routing-request-id": "WESTUS2:20210519T185914Z:ce9e60bf-840f-4dc2-90c4-4249ea9723b0" + "x-ms-correlation-request-id": "e232e1f2-4281-473a-943e-897260a9ea32", + "x-ms-ratelimit-remaining-subscription-reads": "11486", + "x-ms-request-id": "e232e1f2-4281-473a-943e-897260a9ea32", + "x-ms-routing-request-id": "WESTUS2:20210616T000450Z:e232e1f2-4281-473a-943e-897260a9ea32" }, "ResponseBody": [] }, @@ -9007,7 +9145,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6c172ea190737cfa3ea4da1ebe9ab05d", "x-ms-return-client-request-id": "true" }, @@ -9016,17 +9154,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:15 GMT", + "Date": "Wed, 16 Jun 2021 00:04:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f7854022-cee7-4f87-a78f-b3950c3751fa", - "x-ms-ratelimit-remaining-subscription-reads": "11691", - "x-ms-request-id": "f7854022-cee7-4f87-a78f-b3950c3751fa", - "x-ms-routing-request-id": "WESTUS2:20210519T185915Z:f7854022-cee7-4f87-a78f-b3950c3751fa" + "x-ms-correlation-request-id": "273f4a3a-a49d-49c2-a978-e50ea8a5d22e", + "x-ms-ratelimit-remaining-subscription-reads": "11484", + "x-ms-request-id": "273f4a3a-a49d-49c2-a978-e50ea8a5d22e", + "x-ms-routing-request-id": "WESTUS2:20210616T000451Z:273f4a3a-a49d-49c2-a978-e50ea8a5d22e" }, "ResponseBody": [] }, @@ -9035,7 +9173,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e58f0cf060451e183b09f7e5104a158", "x-ms-return-client-request-id": "true" }, @@ -9044,17 +9182,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:16 GMT", + "Date": "Wed, 16 Jun 2021 00:04:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "af01e452-ce11-4eea-b902-fc690c7ed1c7", - "x-ms-ratelimit-remaining-subscription-reads": "11689", - "x-ms-request-id": "af01e452-ce11-4eea-b902-fc690c7ed1c7", - "x-ms-routing-request-id": "WESTUS2:20210519T185916Z:af01e452-ce11-4eea-b902-fc690c7ed1c7" + "x-ms-correlation-request-id": "226039ba-7eba-4b62-9c7e-2662c3e33df2", + "x-ms-ratelimit-remaining-subscription-reads": "11482", + "x-ms-request-id": "226039ba-7eba-4b62-9c7e-2662c3e33df2", + "x-ms-routing-request-id": "WESTUS2:20210616T000452Z:226039ba-7eba-4b62-9c7e-2662c3e33df2" }, "ResponseBody": [] }, @@ -9063,7 +9201,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3cb2c48318bedc5c3da3b77e7bb16464", "x-ms-return-client-request-id": "true" }, @@ -9072,17 +9210,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:17 GMT", + "Date": "Wed, 16 Jun 2021 00:04:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "41834a5f-72eb-4834-8bd2-48c5749557db", - "x-ms-ratelimit-remaining-subscription-reads": "11687", - "x-ms-request-id": "41834a5f-72eb-4834-8bd2-48c5749557db", - "x-ms-routing-request-id": "WESTUS2:20210519T185917Z:41834a5f-72eb-4834-8bd2-48c5749557db" + "x-ms-correlation-request-id": "62649d2f-c7e1-40c5-bb31-d30695bfbf72", + "x-ms-ratelimit-remaining-subscription-reads": "11480", + "x-ms-request-id": "62649d2f-c7e1-40c5-bb31-d30695bfbf72", + "x-ms-routing-request-id": "WESTUS2:20210616T000453Z:62649d2f-c7e1-40c5-bb31-d30695bfbf72" }, "ResponseBody": [] }, @@ -9091,7 +9229,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af0f33084abb9abe4dc5e8c3f07c2b39", "x-ms-return-client-request-id": "true" }, @@ -9100,17 +9238,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:18 GMT", + "Date": "Wed, 16 Jun 2021 00:04:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "8a8fffe6-6db4-4923-9f44-b873f9629d65", - "x-ms-ratelimit-remaining-subscription-reads": "11685", - "x-ms-request-id": "8a8fffe6-6db4-4923-9f44-b873f9629d65", - "x-ms-routing-request-id": "WESTUS2:20210519T185918Z:8a8fffe6-6db4-4923-9f44-b873f9629d65" + "x-ms-correlation-request-id": "0ae1636c-01cb-4cc5-9dab-67865da64f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11478", + "x-ms-request-id": "0ae1636c-01cb-4cc5-9dab-67865da64f0d", + "x-ms-routing-request-id": "WESTUS2:20210616T000454Z:0ae1636c-01cb-4cc5-9dab-67865da64f0d" }, "ResponseBody": [] }, @@ -9119,7 +9257,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f99a820273e7b79f947b20614e62d6d2", "x-ms-return-client-request-id": "true" }, @@ -9128,17 +9266,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:19 GMT", + "Date": "Wed, 16 Jun 2021 00:04:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c206329f-c754-41ed-bac6-65f559024a10", - "x-ms-ratelimit-remaining-subscription-reads": "11683", - "x-ms-request-id": "c206329f-c754-41ed-bac6-65f559024a10", - "x-ms-routing-request-id": "WESTUS2:20210519T185919Z:c206329f-c754-41ed-bac6-65f559024a10" + "x-ms-correlation-request-id": "b6f3ee20-3416-4b1b-9e1b-f1c09117f7f7", + "x-ms-ratelimit-remaining-subscription-reads": "11476", + "x-ms-request-id": "b6f3ee20-3416-4b1b-9e1b-f1c09117f7f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000455Z:b6f3ee20-3416-4b1b-9e1b-f1c09117f7f7" }, "ResponseBody": [] }, @@ -9147,7 +9285,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d753a4bf2f4399d0517eff83099ebc1", "x-ms-return-client-request-id": "true" }, @@ -9156,17 +9294,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:20 GMT", + "Date": "Wed, 16 Jun 2021 00:04:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1b683ff0-4a36-42bd-bbfc-c5fa62002db3", - "x-ms-ratelimit-remaining-subscription-reads": "11681", - "x-ms-request-id": "1b683ff0-4a36-42bd-bbfc-c5fa62002db3", - "x-ms-routing-request-id": "WESTUS2:20210519T185920Z:1b683ff0-4a36-42bd-bbfc-c5fa62002db3" + "x-ms-correlation-request-id": "ade79926-0649-48d6-8b47-36b00b0c004e", + "x-ms-ratelimit-remaining-subscription-reads": "11474", + "x-ms-request-id": "ade79926-0649-48d6-8b47-36b00b0c004e", + "x-ms-routing-request-id": "WESTUS2:20210616T000456Z:ade79926-0649-48d6-8b47-36b00b0c004e" }, "ResponseBody": [] }, @@ -9175,7 +9313,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f97b7d786b17957d94581a3f295d4ceb", "x-ms-return-client-request-id": "true" }, @@ -9184,17 +9322,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:21 GMT", + "Date": "Wed, 16 Jun 2021 00:04:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b3a6fc29-f4ef-452e-afaf-698b324496ce", - "x-ms-ratelimit-remaining-subscription-reads": "11679", - "x-ms-request-id": "b3a6fc29-f4ef-452e-afaf-698b324496ce", - "x-ms-routing-request-id": "WESTUS2:20210519T185921Z:b3a6fc29-f4ef-452e-afaf-698b324496ce" + "x-ms-correlation-request-id": "ce5fd5a8-7abd-43a0-9e6a-0781661bc941", + "x-ms-ratelimit-remaining-subscription-reads": "11472", + "x-ms-request-id": "ce5fd5a8-7abd-43a0-9e6a-0781661bc941", + "x-ms-routing-request-id": "WESTUS2:20210616T000457Z:ce5fd5a8-7abd-43a0-9e6a-0781661bc941" }, "ResponseBody": [] }, @@ -9203,7 +9341,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b57715ef0d061045e561f3cf84a786fa", "x-ms-return-client-request-id": "true" }, @@ -9212,17 +9350,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:22 GMT", + "Date": "Wed, 16 Jun 2021 00:04:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "eab62b5a-3239-455f-99de-2db212e00a86", - "x-ms-ratelimit-remaining-subscription-reads": "11677", - "x-ms-request-id": "eab62b5a-3239-455f-99de-2db212e00a86", - "x-ms-routing-request-id": "WESTUS2:20210519T185922Z:eab62b5a-3239-455f-99de-2db212e00a86" + "x-ms-correlation-request-id": "8aa24851-2157-4a75-9060-6ee2b2162dbf", + "x-ms-ratelimit-remaining-subscription-reads": "11470", + "x-ms-request-id": "8aa24851-2157-4a75-9060-6ee2b2162dbf", + "x-ms-routing-request-id": "WESTUS2:20210616T000458Z:8aa24851-2157-4a75-9060-6ee2b2162dbf" }, "ResponseBody": [] }, @@ -9231,7 +9369,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0e95f90dce6e0bbbde0899bd75d0fa8", "x-ms-return-client-request-id": "true" }, @@ -9240,17 +9378,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:22 GMT", + "Date": "Wed, 16 Jun 2021 00:04:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cc3736a1-6808-49d7-abd6-58394f5cc9ab", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "cc3736a1-6808-49d7-abd6-58394f5cc9ab", - "x-ms-routing-request-id": "WESTUS2:20210519T185923Z:cc3736a1-6808-49d7-abd6-58394f5cc9ab" + "x-ms-correlation-request-id": "4a011264-6d18-42ef-bcb9-6cd390a9d133", + "x-ms-ratelimit-remaining-subscription-reads": "11468", + "x-ms-request-id": "4a011264-6d18-42ef-bcb9-6cd390a9d133", + "x-ms-routing-request-id": "WESTUS2:20210616T000500Z:4a011264-6d18-42ef-bcb9-6cd390a9d133" }, "ResponseBody": [] }, @@ -9259,7 +9397,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1a0803cb36216aba386b14b577ad10ed", "x-ms-return-client-request-id": "true" }, @@ -9268,17 +9406,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:23 GMT", + "Date": "Wed, 16 Jun 2021 00:05:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7481c623-4c65-49e0-88b7-8372a5fe2631", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "7481c623-4c65-49e0-88b7-8372a5fe2631", - "x-ms-routing-request-id": "WESTUS2:20210519T185924Z:7481c623-4c65-49e0-88b7-8372a5fe2631" + "x-ms-correlation-request-id": "d5548537-cd7d-4db2-8469-f61d4afd4e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11466", + "x-ms-request-id": "d5548537-cd7d-4db2-8469-f61d4afd4e5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000501Z:d5548537-cd7d-4db2-8469-f61d4afd4e5e" }, "ResponseBody": [] }, @@ -9287,7 +9425,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "caaf20d17c7313045a97f72584a93887", "x-ms-return-client-request-id": "true" }, @@ -9296,17 +9434,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:24 GMT", + "Date": "Wed, 16 Jun 2021 00:05:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a207a857-8273-451d-b3e6-2ab027df1d0f", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "a207a857-8273-451d-b3e6-2ab027df1d0f", - "x-ms-routing-request-id": "WESTUS2:20210519T185925Z:a207a857-8273-451d-b3e6-2ab027df1d0f" + "x-ms-correlation-request-id": "c13379cb-bf0b-4feb-8d78-f710392cab98", + "x-ms-ratelimit-remaining-subscription-reads": "11464", + "x-ms-request-id": "c13379cb-bf0b-4feb-8d78-f710392cab98", + "x-ms-routing-request-id": "WESTUS2:20210616T000502Z:c13379cb-bf0b-4feb-8d78-f710392cab98" }, "ResponseBody": [] }, @@ -9315,7 +9453,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80044b526c9e59d9a47e977ac805680f", "x-ms-return-client-request-id": "true" }, @@ -9324,17 +9462,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:26 GMT", + "Date": "Wed, 16 Jun 2021 00:05:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "78d22ce2-0496-438b-b48c-07644f1f6dd0", - "x-ms-ratelimit-remaining-subscription-reads": "11673", - "x-ms-request-id": "78d22ce2-0496-438b-b48c-07644f1f6dd0", - "x-ms-routing-request-id": "WESTUS2:20210519T185926Z:78d22ce2-0496-438b-b48c-07644f1f6dd0" + "x-ms-correlation-request-id": "47632143-4f55-4222-92e6-440c30cd726d", + "x-ms-ratelimit-remaining-subscription-reads": "11462", + "x-ms-request-id": "47632143-4f55-4222-92e6-440c30cd726d", + "x-ms-routing-request-id": "WESTUS2:20210616T000503Z:47632143-4f55-4222-92e6-440c30cd726d" }, "ResponseBody": [] }, @@ -9343,7 +9481,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b7c99ccf45ae4f34fff5bf893e94e68e", "x-ms-return-client-request-id": "true" }, @@ -9352,17 +9490,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:26 GMT", + "Date": "Wed, 16 Jun 2021 00:05:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3b43e3c2-a0ab-40bb-aa00-c73f33f49948", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "3b43e3c2-a0ab-40bb-aa00-c73f33f49948", - "x-ms-routing-request-id": "WESTUS2:20210519T185927Z:3b43e3c2-a0ab-40bb-aa00-c73f33f49948" + "x-ms-correlation-request-id": "4e76a692-d2dc-45eb-97c7-5ae30ff45420", + "x-ms-ratelimit-remaining-subscription-reads": "11460", + "x-ms-request-id": "4e76a692-d2dc-45eb-97c7-5ae30ff45420", + "x-ms-routing-request-id": "WESTUS2:20210616T000504Z:4e76a692-d2dc-45eb-97c7-5ae30ff45420" }, "ResponseBody": [] }, @@ -9371,7 +9509,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c638d3390a9654e465525f5e48a4b54", "x-ms-return-client-request-id": "true" }, @@ -9380,17 +9518,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:28 GMT", + "Date": "Wed, 16 Jun 2021 00:05:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f25893ed-4d5b-4b6d-a12f-aeadaa9a6936", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "f25893ed-4d5b-4b6d-a12f-aeadaa9a6936", - "x-ms-routing-request-id": "WESTUS2:20210519T185928Z:f25893ed-4d5b-4b6d-a12f-aeadaa9a6936" + "x-ms-correlation-request-id": "5fb1f124-9043-4f0a-a681-94490d600004", + "x-ms-ratelimit-remaining-subscription-reads": "11458", + "x-ms-request-id": "5fb1f124-9043-4f0a-a681-94490d600004", + "x-ms-routing-request-id": "WESTUS2:20210616T000505Z:5fb1f124-9043-4f0a-a681-94490d600004" }, "ResponseBody": [] }, @@ -9399,7 +9537,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e856e82f80df0dd816b581a8ac4f1b0f", "x-ms-return-client-request-id": "true" }, @@ -9408,17 +9546,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:29 GMT", + "Date": "Wed, 16 Jun 2021 00:05:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "94783915-a0eb-4548-b77f-3f1f84f66f38", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "94783915-a0eb-4548-b77f-3f1f84f66f38", - "x-ms-routing-request-id": "WESTUS2:20210519T185929Z:94783915-a0eb-4548-b77f-3f1f84f66f38" + "x-ms-correlation-request-id": "99a3ff44-5cab-41d2-8af1-2b0e727516be", + "x-ms-ratelimit-remaining-subscription-reads": "11456", + "x-ms-request-id": "99a3ff44-5cab-41d2-8af1-2b0e727516be", + "x-ms-routing-request-id": "WESTUS2:20210616T000506Z:99a3ff44-5cab-41d2-8af1-2b0e727516be" }, "ResponseBody": [] }, @@ -9427,7 +9565,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a4709983ca23f664d6470581f3f6a74", "x-ms-return-client-request-id": "true" }, @@ -9436,17 +9574,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:30 GMT", + "Date": "Wed, 16 Jun 2021 00:05:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "817ca455-4770-4cd5-af6d-178d85fa9a53", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "817ca455-4770-4cd5-af6d-178d85fa9a53", - "x-ms-routing-request-id": "WESTUS2:20210519T185930Z:817ca455-4770-4cd5-af6d-178d85fa9a53" + "x-ms-correlation-request-id": "037e4c41-fe52-443b-b3b1-a4681312ed11", + "x-ms-ratelimit-remaining-subscription-reads": "11454", + "x-ms-request-id": "037e4c41-fe52-443b-b3b1-a4681312ed11", + "x-ms-routing-request-id": "WESTUS2:20210616T000507Z:037e4c41-fe52-443b-b3b1-a4681312ed11" }, "ResponseBody": [] }, @@ -9455,7 +9593,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "565a6baafd3eb2aeb45516f30ea5b8f6", "x-ms-return-client-request-id": "true" }, @@ -9464,17 +9602,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:31 GMT", + "Date": "Wed, 16 Jun 2021 00:05:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1d562fab-5516-4363-9cc8-4bf4617837de", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "1d562fab-5516-4363-9cc8-4bf4617837de", - "x-ms-routing-request-id": "WESTUS2:20210519T185931Z:1d562fab-5516-4363-9cc8-4bf4617837de" + "x-ms-correlation-request-id": "7293a413-c234-4bd7-a9af-46f1d167e027", + "x-ms-ratelimit-remaining-subscription-reads": "11452", + "x-ms-request-id": "7293a413-c234-4bd7-a9af-46f1d167e027", + "x-ms-routing-request-id": "WESTUS2:20210616T000508Z:7293a413-c234-4bd7-a9af-46f1d167e027" }, "ResponseBody": [] }, @@ -9483,7 +9621,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da5c153a1043f2b181169b7b0f80edd6", "x-ms-return-client-request-id": "true" }, @@ -9492,17 +9630,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:32 GMT", + "Date": "Wed, 16 Jun 2021 00:05:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d60e7dc0-84fd-40a5-9b80-411eade6a04f", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "d60e7dc0-84fd-40a5-9b80-411eade6a04f", - "x-ms-routing-request-id": "WESTUS2:20210519T185932Z:d60e7dc0-84fd-40a5-9b80-411eade6a04f" + "x-ms-correlation-request-id": "97da624e-8e6c-41ad-8d67-f4e081b3654e", + "x-ms-ratelimit-remaining-subscription-reads": "11450", + "x-ms-request-id": "97da624e-8e6c-41ad-8d67-f4e081b3654e", + "x-ms-routing-request-id": "WESTUS2:20210616T000509Z:97da624e-8e6c-41ad-8d67-f4e081b3654e" }, "ResponseBody": [] }, @@ -9511,7 +9649,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "41fe0c4ac5f59bd15a94864d267230a7", "x-ms-return-client-request-id": "true" }, @@ -9520,17 +9658,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:33 GMT", + "Date": "Wed, 16 Jun 2021 00:05:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1", - "x-ms-routing-request-id": "WESTUS2:20210519T185933Z:c1296bb7-abd2-47b8-8cd0-9b7ffa408ba1" + "x-ms-correlation-request-id": "3801b3b9-6892-4933-b6bb-d72c32b71534", + "x-ms-ratelimit-remaining-subscription-reads": "11448", + "x-ms-request-id": "3801b3b9-6892-4933-b6bb-d72c32b71534", + "x-ms-routing-request-id": "WESTUS2:20210616T000510Z:3801b3b9-6892-4933-b6bb-d72c32b71534" }, "ResponseBody": [] }, @@ -9539,7 +9677,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "091e7aab8fe39931b967d4286233a234", "x-ms-return-client-request-id": "true" }, @@ -9548,17 +9686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:34 GMT", + "Date": "Wed, 16 Jun 2021 00:05:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e", - "x-ms-routing-request-id": "WESTUS2:20210519T185934Z:9e7b2c1b-535a-4948-98ab-e6c27c1d3f7e" + "x-ms-correlation-request-id": "cfc07d27-f935-4fa8-9a7c-4b17f24e78d7", + "x-ms-ratelimit-remaining-subscription-reads": "11446", + "x-ms-request-id": "cfc07d27-f935-4fa8-9a7c-4b17f24e78d7", + "x-ms-routing-request-id": "WESTUS2:20210616T000511Z:cfc07d27-f935-4fa8-9a7c-4b17f24e78d7" }, "ResponseBody": [] }, @@ -9567,7 +9705,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02a93f6877a7740144c080ae8964cc0e", "x-ms-return-client-request-id": "true" }, @@ -9576,17 +9714,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:35 GMT", + "Date": "Wed, 16 Jun 2021 00:05:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9adf3b57-72e5-45ad-89fe-5b3a27a6b832", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "9adf3b57-72e5-45ad-89fe-5b3a27a6b832", - "x-ms-routing-request-id": "WESTUS2:20210519T185935Z:9adf3b57-72e5-45ad-89fe-5b3a27a6b832" + "x-ms-correlation-request-id": "234dbe5a-9ff6-4a7b-868b-e9e804daa441", + "x-ms-ratelimit-remaining-subscription-reads": "11444", + "x-ms-request-id": "234dbe5a-9ff6-4a7b-868b-e9e804daa441", + "x-ms-routing-request-id": "WESTUS2:20210616T000512Z:234dbe5a-9ff6-4a7b-868b-e9e804daa441" }, "ResponseBody": [] }, @@ -9595,7 +9733,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95cff3e5e361baf3da64888ef0a93827", "x-ms-return-client-request-id": "true" }, @@ -9604,17 +9742,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:36 GMT", + "Date": "Wed, 16 Jun 2021 00:05:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "37d913dd-1bb2-4ced-86fc-47a7d873e726", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "37d913dd-1bb2-4ced-86fc-47a7d873e726", - "x-ms-routing-request-id": "WESTUS2:20210519T185936Z:37d913dd-1bb2-4ced-86fc-47a7d873e726" + "x-ms-correlation-request-id": "a6b46bc0-b453-4081-9cbb-af06d672381e", + "x-ms-ratelimit-remaining-subscription-reads": "11442", + "x-ms-request-id": "a6b46bc0-b453-4081-9cbb-af06d672381e", + "x-ms-routing-request-id": "WESTUS2:20210616T000513Z:a6b46bc0-b453-4081-9cbb-af06d672381e" }, "ResponseBody": [] }, @@ -9623,7 +9761,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6e452f12ec9340078a9c5220f831054", "x-ms-return-client-request-id": "true" }, @@ -9632,17 +9770,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:37 GMT", + "Date": "Wed, 16 Jun 2021 00:05:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fec14962-2d51-46a0-a6a0-a2169cb60d83", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "fec14962-2d51-46a0-a6a0-a2169cb60d83", - "x-ms-routing-request-id": "WESTUS2:20210519T185938Z:fec14962-2d51-46a0-a6a0-a2169cb60d83" + "x-ms-correlation-request-id": "d2f90bf7-5400-4f0a-8642-8bd0257d9980", + "x-ms-ratelimit-remaining-subscription-reads": "11440", + "x-ms-request-id": "d2f90bf7-5400-4f0a-8642-8bd0257d9980", + "x-ms-routing-request-id": "WESTUS2:20210616T000514Z:d2f90bf7-5400-4f0a-8642-8bd0257d9980" }, "ResponseBody": [] }, @@ -9651,7 +9789,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e42c69a0c6384d24bef2742ee73849b", "x-ms-return-client-request-id": "true" }, @@ -9660,17 +9798,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:38 GMT", + "Date": "Wed, 16 Jun 2021 00:05:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "eab1db17-e728-4f6d-bec9-09885042250d", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "eab1db17-e728-4f6d-bec9-09885042250d", - "x-ms-routing-request-id": "WESTUS2:20210519T185939Z:eab1db17-e728-4f6d-bec9-09885042250d" + "x-ms-correlation-request-id": "aed92dd7-f7d5-4b3e-8eef-ce0d076b4d42", + "x-ms-ratelimit-remaining-subscription-reads": "11438", + "x-ms-request-id": "aed92dd7-f7d5-4b3e-8eef-ce0d076b4d42", + "x-ms-routing-request-id": "WESTUS2:20210616T000515Z:aed92dd7-f7d5-4b3e-8eef-ce0d076b4d42" }, "ResponseBody": [] }, @@ -9679,7 +9817,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37bd5988e57fb645f39b1db71ed1aa57", "x-ms-return-client-request-id": "true" }, @@ -9688,17 +9826,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:39 GMT", + "Date": "Wed, 16 Jun 2021 00:05:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5733f0a8-8e94-473e-b5aa-6f9a3988f768", - "x-ms-ratelimit-remaining-subscription-reads": "11660", - "x-ms-request-id": "5733f0a8-8e94-473e-b5aa-6f9a3988f768", - "x-ms-routing-request-id": "WESTUS2:20210519T185940Z:5733f0a8-8e94-473e-b5aa-6f9a3988f768" + "x-ms-correlation-request-id": "1b86f4ac-1d89-4243-a424-956c934633c7", + "x-ms-ratelimit-remaining-subscription-reads": "11436", + "x-ms-request-id": "1b86f4ac-1d89-4243-a424-956c934633c7", + "x-ms-routing-request-id": "WESTUS2:20210616T000516Z:1b86f4ac-1d89-4243-a424-956c934633c7" }, "ResponseBody": [] }, @@ -9707,7 +9845,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2af33454ca66e4c37f609bd907bd4605", "x-ms-return-client-request-id": "true" }, @@ -9716,17 +9854,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:40 GMT", + "Date": "Wed, 16 Jun 2021 00:05:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "18efc2dd-a6ba-4540-b7e3-547ed8082c88", - "x-ms-ratelimit-remaining-subscription-reads": "11659", - "x-ms-request-id": "18efc2dd-a6ba-4540-b7e3-547ed8082c88", - "x-ms-routing-request-id": "WESTUS2:20210519T185941Z:18efc2dd-a6ba-4540-b7e3-547ed8082c88" + "x-ms-correlation-request-id": "b9967eb6-7c16-4a5f-b156-a982cc652f32", + "x-ms-ratelimit-remaining-subscription-reads": "11434", + "x-ms-request-id": "b9967eb6-7c16-4a5f-b156-a982cc652f32", + "x-ms-routing-request-id": "WESTUS2:20210616T000517Z:b9967eb6-7c16-4a5f-b156-a982cc652f32" }, "ResponseBody": [] }, @@ -9735,7 +9873,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b69a2a24d8c5b4d4808b7bc7ef1b667a", "x-ms-return-client-request-id": "true" }, @@ -9744,17 +9882,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:41 GMT", + "Date": "Wed, 16 Jun 2021 00:05:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f77ba75f-1eb8-4e5b-8148-e63e4f740318", - "x-ms-ratelimit-remaining-subscription-reads": "11658", - "x-ms-request-id": "f77ba75f-1eb8-4e5b-8148-e63e4f740318", - "x-ms-routing-request-id": "WESTUS2:20210519T185942Z:f77ba75f-1eb8-4e5b-8148-e63e4f740318" + "x-ms-correlation-request-id": "4f061134-d467-4a7f-ab58-103cbd285d3b", + "x-ms-ratelimit-remaining-subscription-reads": "11432", + "x-ms-request-id": "4f061134-d467-4a7f-ab58-103cbd285d3b", + "x-ms-routing-request-id": "WESTUS2:20210616T000518Z:4f061134-d467-4a7f-ab58-103cbd285d3b" }, "ResponseBody": [] }, @@ -9763,7 +9901,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9eecf445a7fbe3495d8b81f4a6baf36", "x-ms-return-client-request-id": "true" }, @@ -9772,17 +9910,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:42 GMT", + "Date": "Wed, 16 Jun 2021 00:05:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e76a52cc-f9fb-4b73-b9a5-29ec62d1d896", - "x-ms-ratelimit-remaining-subscription-reads": "11656", - "x-ms-request-id": "e76a52cc-f9fb-4b73-b9a5-29ec62d1d896", - "x-ms-routing-request-id": "WESTUS2:20210519T185943Z:e76a52cc-f9fb-4b73-b9a5-29ec62d1d896" + "x-ms-correlation-request-id": "6a89ba3d-9dd7-49e6-8541-f77aa39e0e7e", + "x-ms-ratelimit-remaining-subscription-reads": "11430", + "x-ms-request-id": "6a89ba3d-9dd7-49e6-8541-f77aa39e0e7e", + "x-ms-routing-request-id": "WESTUS2:20210616T000519Z:6a89ba3d-9dd7-49e6-8541-f77aa39e0e7e" }, "ResponseBody": [] }, @@ -9791,7 +9929,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3921755f4377c91603ea9db4efcf464", "x-ms-return-client-request-id": "true" }, @@ -9800,17 +9938,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:43 GMT", + "Date": "Wed, 16 Jun 2021 00:05:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6da68e13-5e36-4977-b56e-c171c04e424b", - "x-ms-ratelimit-remaining-subscription-reads": "11654", - "x-ms-request-id": "6da68e13-5e36-4977-b56e-c171c04e424b", - "x-ms-routing-request-id": "WESTUS2:20210519T185944Z:6da68e13-5e36-4977-b56e-c171c04e424b" + "x-ms-correlation-request-id": "693be226-42f0-4e10-b941-fb160075547b", + "x-ms-ratelimit-remaining-subscription-reads": "11428", + "x-ms-request-id": "693be226-42f0-4e10-b941-fb160075547b", + "x-ms-routing-request-id": "WESTUS2:20210616T000520Z:693be226-42f0-4e10-b941-fb160075547b" }, "ResponseBody": [] }, @@ -9819,7 +9957,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "389520fa8cceca86f6db21ed20b46914", "x-ms-return-client-request-id": "true" }, @@ -9828,17 +9966,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:44 GMT", + "Date": "Wed, 16 Jun 2021 00:05:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f3c12e81-84ae-4f59-a48e-d98ec4bcddac", - "x-ms-ratelimit-remaining-subscription-reads": "11652", - "x-ms-request-id": "f3c12e81-84ae-4f59-a48e-d98ec4bcddac", - "x-ms-routing-request-id": "WESTUS2:20210519T185945Z:f3c12e81-84ae-4f59-a48e-d98ec4bcddac" + "x-ms-correlation-request-id": "afb4a29a-7221-42ca-b1ba-1eb5afbce895", + "x-ms-ratelimit-remaining-subscription-reads": "11426", + "x-ms-request-id": "afb4a29a-7221-42ca-b1ba-1eb5afbce895", + "x-ms-routing-request-id": "WESTUS2:20210616T000521Z:afb4a29a-7221-42ca-b1ba-1eb5afbce895" }, "ResponseBody": [] }, @@ -9847,7 +9985,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d87244dc72884f433d725940b1586f99", "x-ms-return-client-request-id": "true" }, @@ -9856,17 +9994,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:45 GMT", + "Date": "Wed, 16 Jun 2021 00:05:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "fc6764d7-9bf3-4374-89c1-c9bd335935ac", - "x-ms-ratelimit-remaining-subscription-reads": "11650", - "x-ms-request-id": "fc6764d7-9bf3-4374-89c1-c9bd335935ac", - "x-ms-routing-request-id": "WESTUS2:20210519T185946Z:fc6764d7-9bf3-4374-89c1-c9bd335935ac" + "x-ms-correlation-request-id": "4d41ce83-29da-4202-a4c0-9eed88ecedf2", + "x-ms-ratelimit-remaining-subscription-reads": "11424", + "x-ms-request-id": "4d41ce83-29da-4202-a4c0-9eed88ecedf2", + "x-ms-routing-request-id": "WESTUS2:20210616T000522Z:4d41ce83-29da-4202-a4c0-9eed88ecedf2" }, "ResponseBody": [] }, @@ -9875,7 +10013,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2a2454e376d5c96791c8fd5bd3a45bab", "x-ms-return-client-request-id": "true" }, @@ -9884,17 +10022,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:46 GMT", + "Date": "Wed, 16 Jun 2021 00:05:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "e3f02cde-bdd5-458d-bfca-bb1d15580167", - "x-ms-ratelimit-remaining-subscription-reads": "11648", - "x-ms-request-id": "e3f02cde-bdd5-458d-bfca-bb1d15580167", - "x-ms-routing-request-id": "WESTUS2:20210519T185947Z:e3f02cde-bdd5-458d-bfca-bb1d15580167" + "x-ms-correlation-request-id": "9300a7f1-3e56-442b-9d37-495e8ac3c081", + "x-ms-ratelimit-remaining-subscription-reads": "11422", + "x-ms-request-id": "9300a7f1-3e56-442b-9d37-495e8ac3c081", + "x-ms-routing-request-id": "WESTUS2:20210616T000523Z:9300a7f1-3e56-442b-9d37-495e8ac3c081" }, "ResponseBody": [] }, @@ -9903,7 +10041,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0aff94d51c8987dbdd46fb5c3245189d", "x-ms-return-client-request-id": "true" }, @@ -9912,17 +10050,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:47 GMT", + "Date": "Wed, 16 Jun 2021 00:05:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "864869d5-ffb9-491e-9d3b-e74217dcff80", - "x-ms-ratelimit-remaining-subscription-reads": "11646", - "x-ms-request-id": "864869d5-ffb9-491e-9d3b-e74217dcff80", - "x-ms-routing-request-id": "WESTUS2:20210519T185948Z:864869d5-ffb9-491e-9d3b-e74217dcff80" + "x-ms-correlation-request-id": "08ea37f5-4bde-4e1f-b27a-40bada110c84", + "x-ms-ratelimit-remaining-subscription-reads": "11420", + "x-ms-request-id": "08ea37f5-4bde-4e1f-b27a-40bada110c84", + "x-ms-routing-request-id": "WESTUS2:20210616T000524Z:08ea37f5-4bde-4e1f-b27a-40bada110c84" }, "ResponseBody": [] }, @@ -9931,7 +10069,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cc09886c3f8f653edda947c075e87b98", "x-ms-return-client-request-id": "true" }, @@ -9940,17 +10078,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:48 GMT", + "Date": "Wed, 16 Jun 2021 00:05:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "261a795b-f73f-43fa-a408-ed38495980e3", - "x-ms-ratelimit-remaining-subscription-reads": "11644", - "x-ms-request-id": "261a795b-f73f-43fa-a408-ed38495980e3", - "x-ms-routing-request-id": "WESTUS2:20210519T185949Z:261a795b-f73f-43fa-a408-ed38495980e3" + "x-ms-correlation-request-id": "a3f733bd-7d09-4435-97a8-95075f6e916f", + "x-ms-ratelimit-remaining-subscription-reads": "11418", + "x-ms-request-id": "a3f733bd-7d09-4435-97a8-95075f6e916f", + "x-ms-routing-request-id": "WESTUS2:20210616T000525Z:a3f733bd-7d09-4435-97a8-95075f6e916f" }, "ResponseBody": [] }, @@ -9959,7 +10097,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c6bae166459c70f789d4d8f7b0a964b", "x-ms-return-client-request-id": "true" }, @@ -9968,17 +10106,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:49 GMT", + "Date": "Wed, 16 Jun 2021 00:05:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "80554568-59e5-4c4f-be49-57d70ca42516", - "x-ms-ratelimit-remaining-subscription-reads": "11642", - "x-ms-request-id": "80554568-59e5-4c4f-be49-57d70ca42516", - "x-ms-routing-request-id": "WESTUS2:20210519T185950Z:80554568-59e5-4c4f-be49-57d70ca42516" + "x-ms-correlation-request-id": "56f19112-2ea2-452d-b9cc-22981988f0b7", + "x-ms-ratelimit-remaining-subscription-reads": "11416", + "x-ms-request-id": "56f19112-2ea2-452d-b9cc-22981988f0b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000526Z:56f19112-2ea2-452d-b9cc-22981988f0b7" }, "ResponseBody": [] }, @@ -9987,64 +10125,1690 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4bee5faf8f9a951b56992de0d51b12f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 18:59:51 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:27 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f576e6c0-9458-4f3e-97bf-8f67d90c3eb2", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "f576e6c0-9458-4f3e-97bf-8f67d90c3eb2", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:f576e6c0-9458-4f3e-97bf-8f67d90c3eb2" + "x-ms-correlation-request-id": "fca02adf-8537-4b9d-a0e4-1975037c3334", + "x-ms-ratelimit-remaining-subscription-reads": "11414", + "x-ms-request-id": "fca02adf-8537-4b9d-a0e4-1975037c3334", + "x-ms-routing-request-id": "WESTUS2:20210616T000527Z:fca02adf-8537-4b9d-a0e4-1975037c3334" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "844662cafcd90744784253f2f2afead2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:51 GMT", + "Connection": "close", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:28 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ea516412-2c14-4b7f-ae6a-52fd4afd161c", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "ea516412-2c14-4b7f-ae6a-52fd4afd161c", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:ea516412-2c14-4b7f-ae6a-52fd4afd161c" + "x-ms-correlation-request-id": "fc7ace83-6dae-4ee9-9f57-ee264d8ffcef", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "fc7ace83-6dae-4ee9-9f57-ee264d8ffcef", + "x-ms-routing-request-id": "WESTUS2:20210616T000529Z:fc7ace83-6dae-4ee9-9f57-ee264d8ffcef" }, - "ResponseBody": { - "value": [] - } + "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1610fb1230f986fd92d5c6c0372ff25d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7a400769-8abe-4d6f-b49b-27687e3811f9", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "7a400769-8abe-4d6f-b49b-27687e3811f9", + "x-ms-routing-request-id": "WESTUS2:20210616T000530Z:7a400769-8abe-4d6f-b49b-27687e3811f9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18c4588b12c4b2721ae7d2583c28a2a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "56458d55-e0bd-4e7a-8a9e-9ee4b8d61db1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "56458d55-e0bd-4e7a-8a9e-9ee4b8d61db1", + "x-ms-routing-request-id": "WESTUS2:20210616T000531Z:56458d55-e0bd-4e7a-8a9e-9ee4b8d61db1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dacd5baefb0a9afb64bff1033684cf48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "df687456-5072-4946-b447-e4114936546a", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "df687456-5072-4946-b447-e4114936546a", + "x-ms-routing-request-id": "WESTUS2:20210616T000532Z:df687456-5072-4946-b447-e4114936546a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a67f650d1ea000d885efb125da54a69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "795119fa-5370-4607-aa04-32c6329b3676", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "795119fa-5370-4607-aa04-32c6329b3676", + "x-ms-routing-request-id": "WESTUS2:20210616T000533Z:795119fa-5370-4607-aa04-32c6329b3676" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc111f3317628f535d2ab404206e7c96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7e07705f-b3f2-4649-8033-1ec6901f4cda", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "7e07705f-b3f2-4649-8033-1ec6901f4cda", + "x-ms-routing-request-id": "WESTUS2:20210616T000534Z:7e07705f-b3f2-4649-8033-1ec6901f4cda" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4608891708c1ddbc4dcc51acffe83cbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "2f1d02fc-a834-4937-b7ca-9b6bec79e898", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "2f1d02fc-a834-4937-b7ca-9b6bec79e898", + "x-ms-routing-request-id": "WESTUS2:20210616T000535Z:2f1d02fc-a834-4937-b7ca-9b6bec79e898" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "16d08775f37238e6a3d73dbf1d08df1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b31c4627-a177-4706-b9b9-19e7d3b0be95", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "b31c4627-a177-4706-b9b9-19e7d3b0be95", + "x-ms-routing-request-id": "WESTUS2:20210616T000536Z:b31c4627-a177-4706-b9b9-19e7d3b0be95" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3fb65e1049c2aa863348f95c6a68f74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f96af1e9-2483-48fa-988b-1df047febd2e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "f96af1e9-2483-48fa-988b-1df047febd2e", + "x-ms-routing-request-id": "WESTUS2:20210616T000537Z:f96af1e9-2483-48fa-988b-1df047febd2e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "998ef4ee659d2323a3d0a2e9cbfcbf44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "dbb4c088-a79b-40a6-bd9b-aef6744fcb39", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "dbb4c088-a79b-40a6-bd9b-aef6744fcb39", + "x-ms-routing-request-id": "WESTUS2:20210616T000538Z:dbb4c088-a79b-40a6-bd9b-aef6744fcb39" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9aca36ed69ec7122dfa6b33e645171fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "92b37768-ede3-4bfc-b21f-5a0e59b21853", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "92b37768-ede3-4bfc-b21f-5a0e59b21853", + "x-ms-routing-request-id": "WESTUS2:20210616T000539Z:92b37768-ede3-4bfc-b21f-5a0e59b21853" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28d1c84746797c7d41d730cc61be5f67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cb6fdb54-d9fe-4e9b-ba82-18834c0768b7", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "cb6fdb54-d9fe-4e9b-ba82-18834c0768b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000540Z:cb6fdb54-d9fe-4e9b-ba82-18834c0768b7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "90a84a74f5dc8587d21db9f7b1e5bf52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ced61cc1-6c61-4f8f-9c1e-933616924d78", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "ced61cc1-6c61-4f8f-9c1e-933616924d78", + "x-ms-routing-request-id": "WESTUS2:20210616T000541Z:ced61cc1-6c61-4f8f-9c1e-933616924d78" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02a1a65e972aa6cab94d591538551020", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "682337bf-f0bd-42f4-952d-d0262c9446f0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "682337bf-f0bd-42f4-952d-d0262c9446f0", + "x-ms-routing-request-id": "WESTUS2:20210616T000542Z:682337bf-f0bd-42f4-952d-d0262c9446f0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "19ca4c46e1a8521f414c555c8c85ca5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "582498a0-f34a-4b39-be8c-3c33f2a7fd2a", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "582498a0-f34a-4b39-be8c-3c33f2a7fd2a", + "x-ms-routing-request-id": "WESTUS2:20210616T000543Z:582498a0-f34a-4b39-be8c-3c33f2a7fd2a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba6ede185d1cdc3c7f01d68e9c724c7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5ea72f8f-4268-42fc-a16e-50bba62e2cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "5ea72f8f-4268-42fc-a16e-50bba62e2cc4", + "x-ms-routing-request-id": "WESTUS2:20210616T000544Z:5ea72f8f-4268-42fc-a16e-50bba62e2cc4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "65b0980da51b7da9864fc0de416e1933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "09c882f8-c3a7-46f0-aca1-5df12d4d3ca6", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "09c882f8-c3a7-46f0-aca1-5df12d4d3ca6", + "x-ms-routing-request-id": "WESTUS2:20210616T000545Z:09c882f8-c3a7-46f0-aca1-5df12d4d3ca6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5afcfd8355e7e90410ed99a70a91b6cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "21679140-49a2-4620-af49-57c785ffce95", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "21679140-49a2-4620-af49-57c785ffce95", + "x-ms-routing-request-id": "WESTUS2:20210616T000546Z:21679140-49a2-4620-af49-57c785ffce95" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f44fd80064d5724034f034cd9c5e9a11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3087ff18-8776-488e-bf72-1c8b834fdef9", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "3087ff18-8776-488e-bf72-1c8b834fdef9", + "x-ms-routing-request-id": "WESTUS2:20210616T000547Z:3087ff18-8776-488e-bf72-1c8b834fdef9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e0ba2e7f175b89594c6552d0b0272f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "49799175-eda5-46bf-84dd-42414d4e80da", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "49799175-eda5-46bf-84dd-42414d4e80da", + "x-ms-routing-request-id": "WESTUS2:20210616T000548Z:49799175-eda5-46bf-84dd-42414d4e80da" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68def199251f1e5ebc8925f620364db2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "eecdb771-3fbf-49f1-beb3-96f3a29328ed", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "eecdb771-3fbf-49f1-beb3-96f3a29328ed", + "x-ms-routing-request-id": "WESTUS2:20210616T000549Z:eecdb771-3fbf-49f1-beb3-96f3a29328ed" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "68bf875217850e5943965f0e0f136732", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "cf87c944-bc6d-4af1-a5ac-c1954c0e3436", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "cf87c944-bc6d-4af1-a5ac-c1954c0e3436", + "x-ms-routing-request-id": "WESTUS2:20210616T000550Z:cf87c944-bc6d-4af1-a5ac-c1954c0e3436" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aa333e7e327fc1f243ece1eccb9e975d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7560b874-0f8c-4573-a089-bf7afb82d682", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "7560b874-0f8c-4573-a089-bf7afb82d682", + "x-ms-routing-request-id": "WESTUS2:20210616T000551Z:7560b874-0f8c-4573-a089-bf7afb82d682" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "83daa3790a42826f98cf2588c6500fa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "54febfe0-82cf-4c02-a33a-a6c64071ed15", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "54febfe0-82cf-4c02-a33a-a6c64071ed15", + "x-ms-routing-request-id": "WESTUS2:20210616T000552Z:54febfe0-82cf-4c02-a33a-a6c64071ed15" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e278f322a203203295fd2499356d42a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3c12e06a-1c47-4c96-9c33-18c3de4d0745", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "3c12e06a-1c47-4c96-9c33-18c3de4d0745", + "x-ms-routing-request-id": "WESTUS2:20210616T000553Z:3c12e06a-1c47-4c96-9c33-18c3de4d0745" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b9401ffe33874efceb112b00c6afbf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4dcdcbca-170e-48bc-9108-8be0e00e718e", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "4dcdcbca-170e-48bc-9108-8be0e00e718e", + "x-ms-routing-request-id": "WESTUS2:20210616T000554Z:4dcdcbca-170e-48bc-9108-8be0e00e718e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8c938ddb526d75a71baee45e5d64c2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f0063a44-fead-438c-b57a-b9a350679204", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "f0063a44-fead-438c-b57a-b9a350679204", + "x-ms-routing-request-id": "WESTUS2:20210616T000555Z:f0063a44-fead-438c-b57a-b9a350679204" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c589808ca3bc3f71030413518f81142a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "9f3bcc7a-3aa1-4297-87f2-8617cb53b320", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "9f3bcc7a-3aa1-4297-87f2-8617cb53b320", + "x-ms-routing-request-id": "WESTUS2:20210616T000556Z:9f3bcc7a-3aa1-4297-87f2-8617cb53b320" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fdbc31026aa3497ea6bcfa7df4aa8ef8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f7258ff8-07f7-49a0-ba63-9c02d5036d27", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "f7258ff8-07f7-49a0-ba63-9c02d5036d27", + "x-ms-routing-request-id": "WESTUS2:20210616T000557Z:f7258ff8-07f7-49a0-ba63-9c02d5036d27" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c23e76436e13937c68ad421a20948ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "16a0aba7-2300-4074-885c-7cd61391a9db", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "16a0aba7-2300-4074-885c-7cd61391a9db", + "x-ms-routing-request-id": "WESTUS2:20210616T000559Z:16a0aba7-2300-4074-885c-7cd61391a9db" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b442c4a64f1a2287013f1effa9f34a58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f8d72dd9-1de5-49e9-b334-3ff45b27da8f", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "f8d72dd9-1de5-49e9-b334-3ff45b27da8f", + "x-ms-routing-request-id": "WESTUS2:20210616T000600Z:f8d72dd9-1de5-49e9-b334-3ff45b27da8f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7ec1a75875ecc49fa823618965ca79d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6985bfb9-5554-41ce-8a78-503687a42f1a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "6985bfb9-5554-41ce-8a78-503687a42f1a", + "x-ms-routing-request-id": "WESTUS2:20210616T000601Z:6985bfb9-5554-41ce-8a78-503687a42f1a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30d70a74da6815de60018aa2173890d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1083483a-c159-4ed1-9c7e-4366b4a5b9fc", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "1083483a-c159-4ed1-9c7e-4366b4a5b9fc", + "x-ms-routing-request-id": "WESTUS2:20210616T000602Z:1083483a-c159-4ed1-9c7e-4366b4a5b9fc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "87ac7b40a01c1e917b76b997196e8ca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f9d748bc-71a3-4465-be35-f6c885f21838", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "f9d748bc-71a3-4465-be35-f6c885f21838", + "x-ms-routing-request-id": "WESTUS2:20210616T000603Z:f9d748bc-71a3-4465-be35-f6c885f21838" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9e8a81971a1c9af03cd7475cfda6b4c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "3ae01db4-cf64-4cf6-ae70-7de04f147f1c", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "3ae01db4-cf64-4cf6-ae70-7de04f147f1c", + "x-ms-routing-request-id": "WESTUS2:20210616T000604Z:3ae01db4-cf64-4cf6-ae70-7de04f147f1c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1ad863f220b0d48078b9b4f12046fbf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "b537ff87-77af-4384-afec-3038c1fefe43", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "b537ff87-77af-4384-afec-3038c1fefe43", + "x-ms-routing-request-id": "WESTUS2:20210616T000605Z:b537ff87-77af-4384-afec-3038c1fefe43" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "960ae675f1ad25b68a114b44593521d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "610530f4-ad19-432a-b107-7593ab2e1c37", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "610530f4-ad19-432a-b107-7593ab2e1c37", + "x-ms-routing-request-id": "WESTUS2:20210616T000606Z:610530f4-ad19-432a-b107-7593ab2e1c37" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5a5f7c1719577f400b5266265ff79f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "74f82cc9-b0f0-4d13-b768-7abe2442dbe2", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "74f82cc9-b0f0-4d13-b768-7abe2442dbe2", + "x-ms-routing-request-id": "WESTUS2:20210616T000607Z:74f82cc9-b0f0-4d13-b768-7abe2442dbe2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "16e755db1d9b0114adb38f9ed53b7a43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "f1e37a59-ea00-4a9c-bf7f-a9eef2578948", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "f1e37a59-ea00-4a9c-bf7f-a9eef2578948", + "x-ms-routing-request-id": "WESTUS2:20210616T000608Z:f1e37a59-ea00-4a9c-bf7f-a9eef2578948" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "282fe09746a1035cf19396f7ca53c08b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "0cc506c7-1bab-4735-90bd-e2de783d0018", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "0cc506c7-1bab-4735-90bd-e2de783d0018", + "x-ms-routing-request-id": "WESTUS2:20210616T000609Z:0cc506c7-1bab-4735-90bd-e2de783d0018" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "046955970a4da438e3a307e2e155a2c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "d5d3d573-a481-4e36-bcf9-70fb64330800", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "d5d3d573-a481-4e36-bcf9-70fb64330800", + "x-ms-routing-request-id": "WESTUS2:20210616T000610Z:d5d3d573-a481-4e36-bcf9-70fb64330800" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "84cbe23b51cf9454f9e32508871c3659", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "7e41947d-9fe7-4c15-8688-6eddc7ac96b0", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "7e41947d-9fe7-4c15-8688-6eddc7ac96b0", + "x-ms-routing-request-id": "WESTUS2:20210616T000611Z:7e41947d-9fe7-4c15-8688-6eddc7ac96b0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f0604f276d28df6a78b44fd3f79229c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "5db2e7f4-50de-4686-a6d7-81cf571b70ef", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "5db2e7f4-50de-4686-a6d7-81cf571b70ef", + "x-ms-routing-request-id": "WESTUS2:20210616T000612Z:5db2e7f4-50de-4686-a6d7-81cf571b70ef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e8bcd1f13b8846bc01d40a69e5301cc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1f92ddfe-254f-42ca-a13a-5b44eda1ba0e", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "1f92ddfe-254f-42ca-a13a-5b44eda1ba0e", + "x-ms-routing-request-id": "WESTUS2:20210616T000613Z:1f92ddfe-254f-42ca-a13a-5b44eda1ba0e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ddefad6d224ec4f2ec3ddd430c56557f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "a7c92fd3-316e-4731-aaae-0b6dd1666040", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "a7c92fd3-316e-4731-aaae-0b6dd1666040", + "x-ms-routing-request-id": "WESTUS2:20210616T000614Z:a7c92fd3-316e-4731-aaae-0b6dd1666040" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b51689c14e5fb7d148c07efe6b8ca877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "1400903b-ffda-45b6-a25c-5629abfe06a7", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "1400903b-ffda-45b6-a25c-5629abfe06a7", + "x-ms-routing-request-id": "WESTUS2:20210616T000615Z:1400903b-ffda-45b6-a25c-5629abfe06a7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "91907d6e4589ce4ddff8fb4a5e783aab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6c1f2f62-934a-487f-a38d-0a3bc94c50a0", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "6c1f2f62-934a-487f-a38d-0a3bc94c50a0", + "x-ms-routing-request-id": "WESTUS2:20210616T000616Z:6c1f2f62-934a-487f-a38d-0a3bc94c50a0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ca88b7e67191f68dc38948ea4f4585f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "c4861752-726e-4fb1-b726-f19544534f95", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "c4861752-726e-4fb1-b726-f19544534f95", + "x-ms-routing-request-id": "WESTUS2:20210616T000617Z:c4861752-726e-4fb1-b726-f19544534f95" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ed56595c4c57cf53c48d666528658cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "022165b9-c8f8-47a3-acd7-1631cc679887", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "022165b9-c8f8-47a3-acd7-1631cc679887", + "x-ms-routing-request-id": "WESTUS2:20210616T000618Z:022165b9-c8f8-47a3-acd7-1631cc679887" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e07fd2854be4075d1471b450b0be29eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "10fec1a9-873b-43e6-9a5c-5f02dfd7b37b", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "10fec1a9-873b-43e6-9a5c-5f02dfd7b37b", + "x-ms-routing-request-id": "WESTUS2:20210616T000619Z:10fec1a9-873b-43e6-9a5c-5f02dfd7b37b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8b49ba0aba3bae6952b20d19001cc55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "ebd4a11a-36ff-40f6-8a54-3859606e6ca6", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "ebd4a11a-36ff-40f6-8a54-3859606e6ca6", + "x-ms-routing-request-id": "WESTUS2:20210616T000620Z:ebd4a11a-36ff-40f6-8a54-3859606e6ca6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d209c5e07774497b07cd7a530fa5cc7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "34b35317-5339-4023-9d25-a52e9e3e94df", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "34b35317-5339-4023-9d25-a52e9e3e94df", + "x-ms-routing-request-id": "WESTUS2:20210616T000621Z:34b35317-5339-4023-9d25-a52e9e3e94df" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6c5eb1e5fd2da2cecc44ab82b8c7713", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "14c26764-0edb-4335-a94f-c23b4b1c3605", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "14c26764-0edb-4335-a94f-c23b4b1c3605", + "x-ms-routing-request-id": "WESTUS2:20210616T000622Z:14c26764-0edb-4335-a94f-c23b4b1c3605" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eb705fa457b42876206af0d53192abf0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "79e1891e-b3ee-4460-9b83-6bbe4aca9eb4", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "79e1891e-b3ee-4460-9b83-6bbe4aca9eb4", + "x-ms-routing-request-id": "WESTUS2:20210616T000623Z:79e1891e-b3ee-4460-9b83-6bbe4aca9eb4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a5b2a25f163b8083982fe5af2dc31e7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "4e839f58-3fae-410d-b070-ab7aa8c2215a", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "4e839f58-3fae-410d-b070-ab7aa8c2215a", + "x-ms-routing-request-id": "WESTUS2:20210616T000624Z:4e839f58-3fae-410d-b070-ab7aa8c2215a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0ae6656e034c6c8759c96676f56a85a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "737596ab-0f47-441b-a7e8-97ed984fd42e", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "737596ab-0f47-441b-a7e8-97ed984fd42e", + "x-ms-routing-request-id": "WESTUS2:20210616T000625Z:737596ab-0f47-441b-a7e8-97ed984fd42e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-f39d2ddc75f8fd4c9e20a27a63362e75-4b31e7a1967cc34e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "89585919d1d98ed7dbef528572c6fb5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?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": "6cba7b20-f08b-4d95-a723-97a260b686bd", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "6cba7b20-f08b-4d95-a723-97a260b686bd", + "x-ms-routing-request-id": "WESTUS2:20210616T000626Z:6cba7b20-f08b-4d95-a723-97a260b686bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI5NC1XRVNUVVMyLU1PVkUiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ca7f754cfae37fbcd9ec309e7f1c1141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:06:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a2fea546-7efe-419a-aff8-ca1e17e3fecf", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "a2fea546-7efe-419a-aff8-ca1e17e3fecf", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:a2fea546-7efe-419a-aff8-ca1e17e3fecf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg294/resources?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1610fb1230f986fd92d5c6c0372ff25d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3968a86946a84a18f20d4448d4254ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 16 Jun 2021 00:06:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "acb1c685-6026-4f2f-8793-2d3a292da40e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "acb1c685-6026-4f2f-8793-2d3a292da40e", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:acb1c685-6026-4f2f-8793-2d3a292da40e" + }, + "ResponseBody": { + "value": [] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f91a39a1ded71f779dd9afeda1380ebf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10053,15 +11817,15 @@ "Cache-Control": "no-cache", "Content-Length": "280", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:50 GMT", + "Date": "Wed, 16 Jun 2021 00:06:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49731b58-0b64-4249-8b93-55aaa0d66931", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "49731b58-0b64-4249-8b93-55aaa0d66931", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:49731b58-0b64-4249-8b93-55aaa0d66931" + "x-ms-correlation-request-id": "22c75981-52da-4f9a-af27-e66f0b8c2677", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "22c75981-52da-4f9a-af27-e66f0b8c2677", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:22c75981-52da-4f9a-af27-e66f0b8c2677" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json index f65742e002f8..cd8d5684d1bb 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartMoveResources()Async.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-76ffb3dfdb2cff49bdc3a62f68b8e690-c970604e320cfd42-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-368ef729e201854889deeeeffece6fc3-b6c3a2fe0c32904c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7f08a352bd75ae5cd47185ebc1fda2e", "x-ms-return-client-request-id": "true" }, @@ -15,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:17 GMT", + "Date": "Wed, 16 Jun 2021 00:01:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6aebad6-551d-4042-85b6-f71bb8548f39", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "b6aebad6-551d-4042-85b6-f71bb8548f39", - "x-ms-routing-request-id": "WESTUS2:20210519T185618Z:b6aebad6-551d-4042-85b6-f71bb8548f39" + "x-ms-correlation-request-id": "4dbb42af-4c50-444b-a47e-72ff00a2ec40", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4dbb42af-4c50-444b-a47e-72ff00a2ec40", + "x-ms-routing-request-id": "WESTUS2:20210616T000151Z:4dbb42af-4c50-444b-a47e-72ff00a2ec40" }, "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", @@ -50,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-d7adec4991c84f4581e39a6541902f3f-32f6169b40c64242-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5f4c3a151790fd418e170c0e8eae0344-28e00ce088021e4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aaaeb8e720ca6f2980ec7b8fe6f9d0de", "x-ms-return-client-request-id": "true" }, @@ -64,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6a32ebf-064a-4ffa-8395-29aa2caa60b1", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "f6a32ebf-064a-4ffa-8395-29aa2caa60b1", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:f6a32ebf-064a-4ffa-8395-29aa2caa60b1" + "x-ms-correlation-request-id": "2754b04d-b719-4b9b-ac1e-4e7f8d348531", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "2754b04d-b719-4b9b-ac1e-4e7f8d348531", + "x-ms-routing-request-id": "WESTUS2:20210616T000152Z:2754b04d-b719-4b9b-ac1e-4e7f8d348531" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421", @@ -93,8 +97,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-e543fbfe5d444941b1616fbaed2139cf-e3085a1dd0097b4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-ae37c4027670ba43a31df6ef9c7af038-318033ccfdd4aa46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "11fcd58594063f9ac2066dd416b6c43c", "x-ms-return-client-request-id": "true" }, @@ -107,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f322faa-3676-4eee-bfbc-0cf01729a452", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "2f322faa-3676-4eee-bfbc-0cf01729a452", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:2f322faa-3676-4eee-bfbc-0cf01729a452" + "x-ms-correlation-request-id": "b0df5b2a-cbe6-4cb2-ac47-8795495ebc16", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "b0df5b2a-cbe6-4cb2-ac47-8795495ebc16", + "x-ms-routing-request-id": "WESTUS2:20210616T000153Z:b0df5b2a-cbe6-4cb2-ac47-8795495ebc16" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572", @@ -134,7 +138,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d36499441f805d40a797f02145218e60-f84821e7e1ed7c4a-00", + "traceparent": "00-b37104864e5e8846bf98739e6f6b23ed-6aab43b49731c54d-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c738ae86a6a78c7573f69cbe64d487f", "x-ms-return-client-request-id": "true" @@ -143,17 +147,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:18 GMT", + "Date": "Wed, 16 Jun 2021 00:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eef39077-4140-4b31-82bd-812d5bbdcad9", - "x-ms-ratelimit-remaining-subscription-reads": "11411", - "x-ms-request-id": "eef39077-4140-4b31-82bd-812d5bbdcad9", - "x-ms-routing-request-id": "WESTUS2:20210519T185619Z:eef39077-4140-4b31-82bd-812d5bbdcad9" + "x-ms-correlation-request-id": "0dd12130-951a-480f-9658-f798749b1729", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "0dd12130-951a-480f-9658-f798749b1729", + "x-ms-routing-request-id": "WESTUS2:20210616T000153Z:0dd12130-951a-480f-9658-f798749b1729" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -233,9 +237,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -306,9 +312,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -474,6 +482,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -521,9 +537,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -594,9 +612,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -763,6 +783,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -810,9 +838,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -884,9 +914,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -958,9 +990,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1031,9 +1065,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1106,9 +1142,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1181,9 +1219,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1212,6 +1252,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1267,9 +1308,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1340,9 +1383,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1412,9 +1457,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1475,9 +1522,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1547,9 +1596,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1612,9 +1663,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1677,9 +1730,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1750,9 +1805,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1815,7 +1872,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1858,9 +1916,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1912,9 +1972,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1965,9 +2027,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2017,9 +2081,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2064,6 +2130,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2107,9 +2174,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2153,9 +2222,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2199,9 +2270,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2385,9 +2458,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2433,9 +2508,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2481,9 +2558,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2529,9 +2608,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2577,9 +2658,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2625,9 +2708,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2785,6 +2870,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2832,9 +2925,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2897,9 +2992,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2961,9 +3058,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3010,9 +3109,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3057,7 +3158,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3197,6 +3299,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3244,7 +3354,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3289,7 +3400,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3334,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3378,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3422,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3466,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3510,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3554,7 +3671,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3598,9 +3716,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3664,9 +3784,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3716,9 +3838,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3861,6 +3985,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3908,9 +4040,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4053,6 +4187,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4070,15 +4212,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421/providers/Microsoft.Compute/availabilitySets/test-aset460?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421/providers/Microsoft.Compute/availabilitySets/test-aset460?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-d36499441f805d40a797f02145218e60-d0fc59cf051abe49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b37104864e5e8846bf98739e6f6b23ed-e48b765c76b02240-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31059992e01613246a071abb9a6935b6", "x-ms-return-client-request-id": "true" }, @@ -4098,7 +4240,7 @@ "Cache-Control": "no-cache", "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4108,11 +4250,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "31059992e01613246a071abb9a6935b6", - "x-ms-correlation-request-id": "5687ad28-87d5-4abd-bf58-565d243f4311", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196", + "x-ms-correlation-request-id": "46a4e9fc-c6b4-4edc-bf7c-8927efac564a", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1135", "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "832fdf87-ff51-4e88-82c8-dbea7b6d8627", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:5687ad28-87d5-4abd-bf58-565d243f4311" + "x-ms-request-id": "7a65277d-4bc3-4efc-b41f-07e8bf7a4853", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:46a4e9fc-c6b4-4edc-bf7c-8927efac564a" }, "ResponseBody": [ "{\r\n", @@ -4137,7 +4279,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-23ffb9ea234cbe42a7303c094e979c40-651c2bd7905f4749-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c8355250bbf07296560d2624f0bdded", "x-ms-return-client-request-id": "true" }, @@ -4147,15 +4290,15 @@ "Cache-Control": "no-cache", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "983afb12-2399-4b12-a1f6-78a6426f34bb", - "x-ms-ratelimit-remaining-subscription-reads": "11410", - "x-ms-request-id": "983afb12-2399-4b12-a1f6-78a6426f34bb", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:983afb12-2399-4b12-a1f6-78a6426f34bb" + "x-ms-correlation-request-id": "950f377e-16db-4610-a25a-43937a67559d", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "950f377e-16db-4610-a25a-43937a67559d", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:950f377e-16db-4610-a25a-43937a67559d" }, "ResponseBody": { "value": [ @@ -4178,7 +4321,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3f78b309023da5147e9afc7d30cfe3f6", "x-ms-return-client-request-id": "true" }, @@ -4188,15 +4331,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a973aa45-dc1f-4ed9-b00c-1696aeb363df", - "x-ms-ratelimit-remaining-subscription-reads": "11409", - "x-ms-request-id": "a973aa45-dc1f-4ed9-b00c-1696aeb363df", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:a973aa45-dc1f-4ed9-b00c-1696aeb363df" + "x-ms-correlation-request-id": "f6ff63ac-d776-448a-a3ef-c33d3009103c", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "f6ff63ac-d776-448a-a3ef-c33d3009103c", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:f6ff63ac-d776-448a-a3ef-c33d3009103c" }, "ResponseBody": { "value": [] @@ -4210,8 +4353,8 @@ "Authorization": "Sanitized", "Content-Length": "255", "Content-Type": "application/json", - "traceparent": "00-f925bf10bc02f84482840fcc11b203bd-10944eb7d8cfd644-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-9bad06b9a6963844b9cc5f0aff5b754d-0b947ea1d65c5740-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4595622b19e547f67d08e00a1ab71b29", "x-ms-return-client-request-id": "true" }, @@ -4225,17 +4368,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a973cec2-2904-4868-a14f-5f2afddc9c61", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "a973cec2-2904-4868-a14f-5f2afddc9c61", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:a973cec2-2904-4868-a14f-5f2afddc9c61" + "x-ms-correlation-request-id": "4270587d-5a14-4ca6-b021-c031f1bcc658", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "4270587d-5a14-4ca6-b021-c031f1bcc658", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:4270587d-5a14-4ca6-b021-c031f1bcc658" }, "ResponseBody": [] }, @@ -4244,7 +4387,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ec37dc7d9776f008bc31c23421098bc6", "x-ms-return-client-request-id": "true" }, @@ -4253,17 +4396,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:19 GMT", + "Date": "Wed, 16 Jun 2021 00:01:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9c072f0a-b48b-43bd-b89e-f05a0be99d3e", - "x-ms-ratelimit-remaining-subscription-reads": "11408", - "x-ms-request-id": "9c072f0a-b48b-43bd-b89e-f05a0be99d3e", - "x-ms-routing-request-id": "WESTUS2:20210519T185620Z:9c072f0a-b48b-43bd-b89e-f05a0be99d3e" + "x-ms-correlation-request-id": "8780be5a-87fd-4c27-8fff-1be4d0a6034f", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "8780be5a-87fd-4c27-8fff-1be4d0a6034f", + "x-ms-routing-request-id": "WESTUS2:20210616T000154Z:8780be5a-87fd-4c27-8fff-1be4d0a6034f" }, "ResponseBody": [] }, @@ -4272,7 +4415,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6fc1d27e66858efae77104077bd038d1", "x-ms-return-client-request-id": "true" }, @@ -4281,17 +4424,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:20 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "70fbf349-bb0c-471b-9e11-f62a8256641e", - "x-ms-ratelimit-remaining-subscription-reads": "11406", - "x-ms-request-id": "70fbf349-bb0c-471b-9e11-f62a8256641e", - "x-ms-routing-request-id": "WESTUS2:20210519T185621Z:70fbf349-bb0c-471b-9e11-f62a8256641e" + "x-ms-correlation-request-id": "825ee4b3-45b9-4def-90ff-3da33aa9b55e", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "825ee4b3-45b9-4def-90ff-3da33aa9b55e", + "x-ms-routing-request-id": "WESTUS2:20210616T000155Z:825ee4b3-45b9-4def-90ff-3da33aa9b55e" }, "ResponseBody": [] }, @@ -4300,7 +4443,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e8d4a312e8024b3b95abfcada460136", "x-ms-return-client-request-id": "true" }, @@ -4309,17 +4452,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:22 GMT", + "Date": "Wed, 16 Jun 2021 00:01:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9bb95f52-b94c-494a-8f7f-8f90810f515a", - "x-ms-ratelimit-remaining-subscription-reads": "11404", - "x-ms-request-id": "9bb95f52-b94c-494a-8f7f-8f90810f515a", - "x-ms-routing-request-id": "WESTUS2:20210519T185622Z:9bb95f52-b94c-494a-8f7f-8f90810f515a" + "x-ms-correlation-request-id": "9497a627-2459-4ee5-a1f4-79ae93bbaed5", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "9497a627-2459-4ee5-a1f4-79ae93bbaed5", + "x-ms-routing-request-id": "WESTUS2:20210616T000156Z:9497a627-2459-4ee5-a1f4-79ae93bbaed5" }, "ResponseBody": [] }, @@ -4328,7 +4471,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ca6d65267ea1610e1a80504920075ec", "x-ms-return-client-request-id": "true" }, @@ -4337,17 +4480,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:23 GMT", + "Date": "Wed, 16 Jun 2021 00:01:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "52668406-dbb3-4045-aa39-44d099d058de", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "52668406-dbb3-4045-aa39-44d099d058de", - "x-ms-routing-request-id": "WESTUS2:20210519T185623Z:52668406-dbb3-4045-aa39-44d099d058de" + "x-ms-correlation-request-id": "065fb494-9c26-45f7-943f-3badc92ec179", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "065fb494-9c26-45f7-943f-3badc92ec179", + "x-ms-routing-request-id": "WESTUS2:20210616T000157Z:065fb494-9c26-45f7-943f-3badc92ec179" }, "ResponseBody": [] }, @@ -4356,7 +4499,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d702f0f84c7c50461e9cb62ba62fb4a0", "x-ms-return-client-request-id": "true" }, @@ -4365,17 +4508,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:24 GMT", + "Date": "Wed, 16 Jun 2021 00:01:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "19065b98-e4fb-4ed0-944e-b737763c4b54", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "19065b98-e4fb-4ed0-944e-b737763c4b54", - "x-ms-routing-request-id": "WESTUS2:20210519T185624Z:19065b98-e4fb-4ed0-944e-b737763c4b54" + "x-ms-correlation-request-id": "2b4aede3-f03d-4aa9-8106-666ce362267d", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "2b4aede3-f03d-4aa9-8106-666ce362267d", + "x-ms-routing-request-id": "WESTUS2:20210616T000158Z:2b4aede3-f03d-4aa9-8106-666ce362267d" }, "ResponseBody": [] }, @@ -4384,7 +4527,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b5ce6ffb29cae73a765cd729af91b8", "x-ms-return-client-request-id": "true" }, @@ -4393,17 +4536,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:25 GMT", + "Date": "Wed, 16 Jun 2021 00:01:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507", - "x-ms-routing-request-id": "WESTUS2:20210519T185626Z:c27bb440-dbc7-43a3-b3f3-c7ed9b3f9507" + "x-ms-correlation-request-id": "239ff337-cd9a-4e80-ad83-69bc631bfcc7", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "239ff337-cd9a-4e80-ad83-69bc631bfcc7", + "x-ms-routing-request-id": "WESTUS2:20210616T000159Z:239ff337-cd9a-4e80-ad83-69bc631bfcc7" }, "ResponseBody": [] }, @@ -4412,7 +4555,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ead2d3e42a4405ba90561d4eb1e570b2", "x-ms-return-client-request-id": "true" }, @@ -4421,17 +4564,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:26 GMT", + "Date": "Wed, 16 Jun 2021 00:01:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c0128f7f-4d65-41d7-ad00-e121eb79d951", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "c0128f7f-4d65-41d7-ad00-e121eb79d951", - "x-ms-routing-request-id": "WESTUS2:20210519T185627Z:c0128f7f-4d65-41d7-ad00-e121eb79d951" + "x-ms-correlation-request-id": "b030c826-c79d-4d86-ac5d-ff8f57e404b5", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "b030c826-c79d-4d86-ac5d-ff8f57e404b5", + "x-ms-routing-request-id": "WESTUS2:20210616T000200Z:b030c826-c79d-4d86-ac5d-ff8f57e404b5" }, "ResponseBody": [] }, @@ -4440,7 +4583,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c49465f4d04bfcc209389c05f06e276f", "x-ms-return-client-request-id": "true" }, @@ -4449,17 +4592,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:27 GMT", + "Date": "Wed, 16 Jun 2021 00:02:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2b411c0d-b160-495f-b6ba-be52f40a33d2", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "2b411c0d-b160-495f-b6ba-be52f40a33d2", - "x-ms-routing-request-id": "WESTUS2:20210519T185628Z:2b411c0d-b160-495f-b6ba-be52f40a33d2" + "x-ms-correlation-request-id": "2be932b1-a2de-45b5-8b08-0253975a4348", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "2be932b1-a2de-45b5-8b08-0253975a4348", + "x-ms-routing-request-id": "WESTUS2:20210616T000201Z:2be932b1-a2de-45b5-8b08-0253975a4348" }, "ResponseBody": [] }, @@ -4468,7 +4611,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d246fd0aca5c455b13af14d3dd981855", "x-ms-return-client-request-id": "true" }, @@ -4477,17 +4620,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:28 GMT", + "Date": "Wed, 16 Jun 2021 00:02:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "85659ad5-4f0c-4f91-9b21-91f26475a390", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "85659ad5-4f0c-4f91-9b21-91f26475a390", - "x-ms-routing-request-id": "WESTUS2:20210519T185629Z:85659ad5-4f0c-4f91-9b21-91f26475a390" + "x-ms-correlation-request-id": "abe4d41c-85a9-41f6-a06e-58f34fdeea8d", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "abe4d41c-85a9-41f6-a06e-58f34fdeea8d", + "x-ms-routing-request-id": "WESTUS2:20210616T000202Z:abe4d41c-85a9-41f6-a06e-58f34fdeea8d" }, "ResponseBody": [] }, @@ -4496,7 +4639,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c3e3a905cc1b146d11d5e00c8eb41521", "x-ms-return-client-request-id": "true" }, @@ -4505,17 +4648,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:29 GMT", + "Date": "Wed, 16 Jun 2021 00:02:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ac4deaaa-a498-40a9-8a78-a546b1d0c445", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "ac4deaaa-a498-40a9-8a78-a546b1d0c445", - "x-ms-routing-request-id": "WESTUS2:20210519T185630Z:ac4deaaa-a498-40a9-8a78-a546b1d0c445" + "x-ms-correlation-request-id": "ebf253e5-9837-4ce8-8e60-9784f3e261e7", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "ebf253e5-9837-4ce8-8e60-9784f3e261e7", + "x-ms-routing-request-id": "WESTUS2:20210616T000203Z:ebf253e5-9837-4ce8-8e60-9784f3e261e7" }, "ResponseBody": [] }, @@ -4524,7 +4667,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b443ae2f9e9f2a55094eb19cbcee1e70", "x-ms-return-client-request-id": "true" }, @@ -4533,17 +4676,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:30 GMT", + "Date": "Wed, 16 Jun 2021 00:02:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7a4b6316-fcd6-47b3-917b-e3f20e9c34ae", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "7a4b6316-fcd6-47b3-917b-e3f20e9c34ae", - "x-ms-routing-request-id": "WESTUS2:20210519T185631Z:7a4b6316-fcd6-47b3-917b-e3f20e9c34ae" + "x-ms-correlation-request-id": "2588a883-bde3-443a-8bdd-4703f71ca491", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "2588a883-bde3-443a-8bdd-4703f71ca491", + "x-ms-routing-request-id": "WESTUS2:20210616T000204Z:2588a883-bde3-443a-8bdd-4703f71ca491" }, "ResponseBody": [] }, @@ -4552,7 +4695,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46ff471f638b3d539032c087e94fb65e", "x-ms-return-client-request-id": "true" }, @@ -4561,17 +4704,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:31 GMT", + "Date": "Wed, 16 Jun 2021 00:02:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cbe695c3-7f8c-4580-b78f-b7e891632308", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "cbe695c3-7f8c-4580-b78f-b7e891632308", - "x-ms-routing-request-id": "WESTUS2:20210519T185632Z:cbe695c3-7f8c-4580-b78f-b7e891632308" + "x-ms-correlation-request-id": "6eddbc1c-639c-4a5b-8b4e-0a00265c2482", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "6eddbc1c-639c-4a5b-8b4e-0a00265c2482", + "x-ms-routing-request-id": "WESTUS2:20210616T000205Z:6eddbc1c-639c-4a5b-8b4e-0a00265c2482" }, "ResponseBody": [] }, @@ -4580,7 +4723,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fa3f299645567b654b9bacc1bd05723", "x-ms-return-client-request-id": "true" }, @@ -4589,17 +4732,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:33 GMT", + "Date": "Wed, 16 Jun 2021 00:02:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c942df0c-5118-4eda-a2cf-dfcaea6f1eea", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "c942df0c-5118-4eda-a2cf-dfcaea6f1eea", - "x-ms-routing-request-id": "WESTUS2:20210519T185633Z:c942df0c-5118-4eda-a2cf-dfcaea6f1eea" + "x-ms-correlation-request-id": "db834b11-34b7-462d-8de3-d51792475126", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "db834b11-34b7-462d-8de3-d51792475126", + "x-ms-routing-request-id": "WESTUS2:20210616T000206Z:db834b11-34b7-462d-8de3-d51792475126" }, "ResponseBody": [] }, @@ -4608,7 +4751,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46ec70b7cfb4cc965b05246cdece40b9", "x-ms-return-client-request-id": "true" }, @@ -4617,17 +4760,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:34 GMT", + "Date": "Wed, 16 Jun 2021 00:02:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c8a5d11-f165-45b3-b8cb-c4a57a3ed968", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "2c8a5d11-f165-45b3-b8cb-c4a57a3ed968", - "x-ms-routing-request-id": "WESTUS2:20210519T185634Z:2c8a5d11-f165-45b3-b8cb-c4a57a3ed968" + "x-ms-correlation-request-id": "3f9dd8ae-b1fc-4d80-9a93-299f45a84c9a", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "3f9dd8ae-b1fc-4d80-9a93-299f45a84c9a", + "x-ms-routing-request-id": "WESTUS2:20210616T000207Z:3f9dd8ae-b1fc-4d80-9a93-299f45a84c9a" }, "ResponseBody": [] }, @@ -4636,7 +4779,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9025298ef4bbb1a9198f2d1a88622bf", "x-ms-return-client-request-id": "true" }, @@ -4645,17 +4788,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:35 GMT", + "Date": "Wed, 16 Jun 2021 00:02:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5091d7a9-9faa-4513-aa5d-82a378d0a70c", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "5091d7a9-9faa-4513-aa5d-82a378d0a70c", - "x-ms-routing-request-id": "WESTUS2:20210519T185635Z:5091d7a9-9faa-4513-aa5d-82a378d0a70c" + "x-ms-correlation-request-id": "19da26be-99a4-467a-814e-b55bba46459d", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "19da26be-99a4-467a-814e-b55bba46459d", + "x-ms-routing-request-id": "WESTUS2:20210616T000208Z:19da26be-99a4-467a-814e-b55bba46459d" }, "ResponseBody": [] }, @@ -4664,7 +4807,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78d09dda7063caaa5bd6d3503f498985", "x-ms-return-client-request-id": "true" }, @@ -4673,17 +4816,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:36 GMT", + "Date": "Wed, 16 Jun 2021 00:02:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "85a19b43-a8b4-42c2-ab8f-0b47b803c092", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "85a19b43-a8b4-42c2-ab8f-0b47b803c092", - "x-ms-routing-request-id": "WESTUS2:20210519T185636Z:85a19b43-a8b4-42c2-ab8f-0b47b803c092" + "x-ms-correlation-request-id": "f2a84580-388e-42ee-b1b8-a1bfcc5a8419", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "f2a84580-388e-42ee-b1b8-a1bfcc5a8419", + "x-ms-routing-request-id": "WESTUS2:20210616T000209Z:f2a84580-388e-42ee-b1b8-a1bfcc5a8419" }, "ResponseBody": [] }, @@ -4692,7 +4835,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c93400788ecec7d75630b41cdcc524d4", "x-ms-return-client-request-id": "true" }, @@ -4701,17 +4844,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:37 GMT", + "Date": "Wed, 16 Jun 2021 00:02:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1a659246-e1d2-45d8-b57f-68dfa396d509", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "1a659246-e1d2-45d8-b57f-68dfa396d509", - "x-ms-routing-request-id": "WESTUS2:20210519T185637Z:1a659246-e1d2-45d8-b57f-68dfa396d509" + "x-ms-correlation-request-id": "b72c47ff-5eaf-434f-91d7-85ad639ed053", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "b72c47ff-5eaf-434f-91d7-85ad639ed053", + "x-ms-routing-request-id": "WESTUS2:20210616T000211Z:b72c47ff-5eaf-434f-91d7-85ad639ed053" }, "ResponseBody": [] }, @@ -4720,7 +4863,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "409264e3c8fe2756a7386d741bca7c48", "x-ms-return-client-request-id": "true" }, @@ -4729,17 +4872,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:38 GMT", + "Date": "Wed, 16 Jun 2021 00:02:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f1d5e1d9-fd34-4add-8801-331c8ab0accb", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "f1d5e1d9-fd34-4add-8801-331c8ab0accb", - "x-ms-routing-request-id": "WESTUS2:20210519T185638Z:f1d5e1d9-fd34-4add-8801-331c8ab0accb" + "x-ms-correlation-request-id": "b97e9fa2-1539-449f-aceb-c20bc44b89b9", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "b97e9fa2-1539-449f-aceb-c20bc44b89b9", + "x-ms-routing-request-id": "WESTUS2:20210616T000212Z:b97e9fa2-1539-449f-aceb-c20bc44b89b9" }, "ResponseBody": [] }, @@ -4748,7 +4891,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7596c0f58524cf1c5082232bb8eed96", "x-ms-return-client-request-id": "true" }, @@ -4757,17 +4900,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:39 GMT", + "Date": "Wed, 16 Jun 2021 00:02:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87", - "x-ms-routing-request-id": "WESTUS2:20210519T185639Z:70c7a39f-40da-4e0b-84c7-ab6aa2b7aa87" + "x-ms-correlation-request-id": "79e87722-2b9a-407b-b9a6-1a6881f287f8", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "79e87722-2b9a-407b-b9a6-1a6881f287f8", + "x-ms-routing-request-id": "WESTUS2:20210616T000213Z:79e87722-2b9a-407b-b9a6-1a6881f287f8" }, "ResponseBody": [] }, @@ -4776,7 +4919,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da6dffb248b6b087aa0c21952063ab8b", "x-ms-return-client-request-id": "true" }, @@ -4785,17 +4928,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:40 GMT", + "Date": "Wed, 16 Jun 2021 00:02:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8264aed1-df46-489b-8ce4-2535e496f7bf", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "8264aed1-df46-489b-8ce4-2535e496f7bf", - "x-ms-routing-request-id": "WESTUS2:20210519T185640Z:8264aed1-df46-489b-8ce4-2535e496f7bf" + "x-ms-correlation-request-id": "817914d4-3e83-41a4-8bde-f6e13a50cdfa", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "817914d4-3e83-41a4-8bde-f6e13a50cdfa", + "x-ms-routing-request-id": "WESTUS2:20210616T000214Z:817914d4-3e83-41a4-8bde-f6e13a50cdfa" }, "ResponseBody": [] }, @@ -4804,7 +4947,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "700c6cb47c6b8a8173467bf5a5246c19", "x-ms-return-client-request-id": "true" }, @@ -4813,17 +4956,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:41 GMT", + "Date": "Wed, 16 Jun 2021 00:02:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3d938b79-057d-4b6a-b46f-c70f2d527016", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "3d938b79-057d-4b6a-b46f-c70f2d527016", - "x-ms-routing-request-id": "WESTUS2:20210519T185641Z:3d938b79-057d-4b6a-b46f-c70f2d527016" + "x-ms-correlation-request-id": "e9f190fa-5171-435f-8245-03746db6735a", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "e9f190fa-5171-435f-8245-03746db6735a", + "x-ms-routing-request-id": "WESTUS2:20210616T000215Z:e9f190fa-5171-435f-8245-03746db6735a" }, "ResponseBody": [] }, @@ -4832,7 +4975,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1cc1d74aa15cc792e5a8fd45375b2b62", "x-ms-return-client-request-id": "true" }, @@ -4841,17 +4984,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:42 GMT", + "Date": "Wed, 16 Jun 2021 00:02:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8b952c1d-28d6-4597-b978-060119e02ccf", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "8b952c1d-28d6-4597-b978-060119e02ccf", - "x-ms-routing-request-id": "WESTUS2:20210519T185642Z:8b952c1d-28d6-4597-b978-060119e02ccf" + "x-ms-correlation-request-id": "29428ce7-c963-4a93-996b-5676986f3d8e", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "29428ce7-c963-4a93-996b-5676986f3d8e", + "x-ms-routing-request-id": "WESTUS2:20210616T000216Z:29428ce7-c963-4a93-996b-5676986f3d8e" }, "ResponseBody": [] }, @@ -4860,7 +5003,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f7d965c7d81362a7de2676fcc910b85", "x-ms-return-client-request-id": "true" }, @@ -4869,17 +5012,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:43 GMT", + "Date": "Wed, 16 Jun 2021 00:02:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7644a71a-d8ed-409b-ae4d-8d5ada023849", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "7644a71a-d8ed-409b-ae4d-8d5ada023849", - "x-ms-routing-request-id": "WESTUS2:20210519T185643Z:7644a71a-d8ed-409b-ae4d-8d5ada023849" + "x-ms-correlation-request-id": "86dde64a-78b9-4b59-820c-acb876ca2d90", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "86dde64a-78b9-4b59-820c-acb876ca2d90", + "x-ms-routing-request-id": "WESTUS2:20210616T000217Z:86dde64a-78b9-4b59-820c-acb876ca2d90" }, "ResponseBody": [] }, @@ -4888,7 +5031,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "494b07a08fa1132eda448ac37f3c5318", "x-ms-return-client-request-id": "true" }, @@ -4897,17 +5040,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:44 GMT", + "Date": "Wed, 16 Jun 2021 00:02:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4e573dd9-53f6-4ed9-a083-6fb09ac60394", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "4e573dd9-53f6-4ed9-a083-6fb09ac60394", - "x-ms-routing-request-id": "WESTUS2:20210519T185644Z:4e573dd9-53f6-4ed9-a083-6fb09ac60394" + "x-ms-correlation-request-id": "17eaedf5-6aaa-41f8-bb16-548179d63d15", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "17eaedf5-6aaa-41f8-bb16-548179d63d15", + "x-ms-routing-request-id": "WESTUS2:20210616T000218Z:17eaedf5-6aaa-41f8-bb16-548179d63d15" }, "ResponseBody": [] }, @@ -4916,7 +5059,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0e98191a1da6cc97ac8b9e7a3a22fa54", "x-ms-return-client-request-id": "true" }, @@ -4925,17 +5068,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:45 GMT", + "Date": "Wed, 16 Jun 2021 00:02:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3b83451a-305b-4c60-9f70-38bc3c9f0ccb", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "3b83451a-305b-4c60-9f70-38bc3c9f0ccb", - "x-ms-routing-request-id": "WESTUS2:20210519T185645Z:3b83451a-305b-4c60-9f70-38bc3c9f0ccb" + "x-ms-correlation-request-id": "f74e1d3d-2112-4eba-8de2-3ca22a96792e", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "f74e1d3d-2112-4eba-8de2-3ca22a96792e", + "x-ms-routing-request-id": "WESTUS2:20210616T000219Z:f74e1d3d-2112-4eba-8de2-3ca22a96792e" }, "ResponseBody": [] }, @@ -4944,7 +5087,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fa5779de20fcdc0676a743cf367b741", "x-ms-return-client-request-id": "true" }, @@ -4953,17 +5096,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:46 GMT", + "Date": "Wed, 16 Jun 2021 00:02:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "249fc13d-b12c-4b3f-a5ce-53d5e1ee819e", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "249fc13d-b12c-4b3f-a5ce-53d5e1ee819e", - "x-ms-routing-request-id": "WESTUS2:20210519T185646Z:249fc13d-b12c-4b3f-a5ce-53d5e1ee819e" + "x-ms-correlation-request-id": "f4990d6b-fbdd-4702-9aed-c93f15a2feba", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "f4990d6b-fbdd-4702-9aed-c93f15a2feba", + "x-ms-routing-request-id": "WESTUS2:20210616T000220Z:f4990d6b-fbdd-4702-9aed-c93f15a2feba" }, "ResponseBody": [] }, @@ -4972,7 +5115,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b3554e8ffcf883de6f7e9c15f0b4d9b8", "x-ms-return-client-request-id": "true" }, @@ -4981,17 +5124,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:47 GMT", + "Date": "Wed, 16 Jun 2021 00:02:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "61dc5cbc-dbe5-48ee-b9b3-35daaef146d7", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "61dc5cbc-dbe5-48ee-b9b3-35daaef146d7", - "x-ms-routing-request-id": "WESTUS2:20210519T185647Z:61dc5cbc-dbe5-48ee-b9b3-35daaef146d7" + "x-ms-correlation-request-id": "19a8e4c9-e07f-450c-9032-b7b3ee91dacb", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "19a8e4c9-e07f-450c-9032-b7b3ee91dacb", + "x-ms-routing-request-id": "WESTUS2:20210616T000221Z:19a8e4c9-e07f-450c-9032-b7b3ee91dacb" }, "ResponseBody": [] }, @@ -5000,7 +5143,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0725364a2396380858cba63ca85bd945", "x-ms-return-client-request-id": "true" }, @@ -5009,17 +5152,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:48 GMT", + "Date": "Wed, 16 Jun 2021 00:02:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "627681c2-b9d4-4155-a9e2-97757ddc29b6", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "627681c2-b9d4-4155-a9e2-97757ddc29b6", - "x-ms-routing-request-id": "WESTUS2:20210519T185648Z:627681c2-b9d4-4155-a9e2-97757ddc29b6" + "x-ms-correlation-request-id": "4ad8bf11-eb53-4a71-95b7-48549aa33a94", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "4ad8bf11-eb53-4a71-95b7-48549aa33a94", + "x-ms-routing-request-id": "WESTUS2:20210616T000222Z:4ad8bf11-eb53-4a71-95b7-48549aa33a94" }, "ResponseBody": [] }, @@ -5028,7 +5171,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebea5dd447cca15b9822bf9045aadcb3", "x-ms-return-client-request-id": "true" }, @@ -5037,17 +5180,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:49 GMT", + "Date": "Wed, 16 Jun 2021 00:02:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "56501630-8b77-4eae-a074-9dbbb4485571", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "56501630-8b77-4eae-a074-9dbbb4485571", - "x-ms-routing-request-id": "WESTUS2:20210519T185649Z:56501630-8b77-4eae-a074-9dbbb4485571" + "x-ms-correlation-request-id": "a349e148-c1cc-4f1c-9d30-20ae13530138", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "a349e148-c1cc-4f1c-9d30-20ae13530138", + "x-ms-routing-request-id": "WESTUS2:20210616T000223Z:a349e148-c1cc-4f1c-9d30-20ae13530138" }, "ResponseBody": [] }, @@ -5056,7 +5199,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bcf2bc90af416baa461c5b2d55a2da14", "x-ms-return-client-request-id": "true" }, @@ -5065,17 +5208,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:50 GMT", + "Date": "Wed, 16 Jun 2021 00:02:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a5761c38-7587-4d94-8c32-deb88693cad2", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "a5761c38-7587-4d94-8c32-deb88693cad2", - "x-ms-routing-request-id": "WESTUS2:20210519T185650Z:a5761c38-7587-4d94-8c32-deb88693cad2" + "x-ms-correlation-request-id": "ad9f4dbf-62e1-4fc6-baae-6944666993a3", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "ad9f4dbf-62e1-4fc6-baae-6944666993a3", + "x-ms-routing-request-id": "WESTUS2:20210616T000224Z:ad9f4dbf-62e1-4fc6-baae-6944666993a3" }, "ResponseBody": [] }, @@ -5084,7 +5227,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "934157a5eeca02ebdb846e746477f2ad", "x-ms-return-client-request-id": "true" }, @@ -5093,17 +5236,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:51 GMT", + "Date": "Wed, 16 Jun 2021 00:02:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d1469554-83d9-4024-9405-2d84dc69990b", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "d1469554-83d9-4024-9405-2d84dc69990b", - "x-ms-routing-request-id": "WESTUS2:20210519T185651Z:d1469554-83d9-4024-9405-2d84dc69990b" + "x-ms-correlation-request-id": "048b4a15-61a5-4ec8-92c6-a32b597f472e", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "048b4a15-61a5-4ec8-92c6-a32b597f472e", + "x-ms-routing-request-id": "WESTUS2:20210616T000225Z:048b4a15-61a5-4ec8-92c6-a32b597f472e" }, "ResponseBody": [] }, @@ -5112,7 +5255,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ebabf3ee1d682403b27ea4b0ec2d4bf6", "x-ms-return-client-request-id": "true" }, @@ -5121,17 +5264,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:52 GMT", + "Date": "Wed, 16 Jun 2021 00:02:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "49ecab5a-7c2e-40b9-8e24-ee027da6f52b", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "49ecab5a-7c2e-40b9-8e24-ee027da6f52b", - "x-ms-routing-request-id": "WESTUS2:20210519T185652Z:49ecab5a-7c2e-40b9-8e24-ee027da6f52b" + "x-ms-correlation-request-id": "53741cf9-12a4-4b2d-a8a0-42bba080ed28", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "53741cf9-12a4-4b2d-a8a0-42bba080ed28", + "x-ms-routing-request-id": "WESTUS2:20210616T000226Z:53741cf9-12a4-4b2d-a8a0-42bba080ed28" }, "ResponseBody": [] }, @@ -5140,7 +5283,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeebaa474969a2e8d1efe1bc413607ce", "x-ms-return-client-request-id": "true" }, @@ -5149,17 +5292,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:53 GMT", + "Date": "Wed, 16 Jun 2021 00:02:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ca44b434-4c09-4e2f-b346-6de8a07e2f63", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "ca44b434-4c09-4e2f-b346-6de8a07e2f63", - "x-ms-routing-request-id": "WESTUS2:20210519T185653Z:ca44b434-4c09-4e2f-b346-6de8a07e2f63" + "x-ms-correlation-request-id": "38fb1b97-7eee-4d32-861b-28705eec4f26", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "38fb1b97-7eee-4d32-861b-28705eec4f26", + "x-ms-routing-request-id": "WESTUS2:20210616T000227Z:38fb1b97-7eee-4d32-861b-28705eec4f26" }, "ResponseBody": [] }, @@ -5168,7 +5311,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "613fae2aeff688ac541de04b493b16ad", "x-ms-return-client-request-id": "true" }, @@ -5177,17 +5320,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:54 GMT", + "Date": "Wed, 16 Jun 2021 00:02:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e99df124-097c-4837-8547-2e963008f32e", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "e99df124-097c-4837-8547-2e963008f32e", - "x-ms-routing-request-id": "WESTUS2:20210519T185654Z:e99df124-097c-4837-8547-2e963008f32e" + "x-ms-correlation-request-id": "d9d5ad39-f6f6-41d5-8335-270e2ea9356b", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "d9d5ad39-f6f6-41d5-8335-270e2ea9356b", + "x-ms-routing-request-id": "WESTUS2:20210616T000228Z:d9d5ad39-f6f6-41d5-8335-270e2ea9356b" }, "ResponseBody": [] }, @@ -5196,7 +5339,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b92c7738048ca4430a091a783b46e37c", "x-ms-return-client-request-id": "true" }, @@ -5205,17 +5348,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:55 GMT", + "Date": "Wed, 16 Jun 2021 00:02:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2084a74c-839d-4925-a760-b2ad222c309e", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "2084a74c-839d-4925-a760-b2ad222c309e", - "x-ms-routing-request-id": "WESTUS2:20210519T185655Z:2084a74c-839d-4925-a760-b2ad222c309e" + "x-ms-correlation-request-id": "187dce1a-af4c-46b9-995d-548ea9fd4188", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "187dce1a-af4c-46b9-995d-548ea9fd4188", + "x-ms-routing-request-id": "WESTUS2:20210616T000229Z:187dce1a-af4c-46b9-995d-548ea9fd4188" }, "ResponseBody": [] }, @@ -5224,7 +5367,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3d85d677eaee5800fe63994c699d5896", "x-ms-return-client-request-id": "true" }, @@ -5233,17 +5376,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:56 GMT", + "Date": "Wed, 16 Jun 2021 00:02:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "53a6bc36-1e04-49b7-9082-735b7b6c8f10", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "53a6bc36-1e04-49b7-9082-735b7b6c8f10", - "x-ms-routing-request-id": "WESTUS2:20210519T185656Z:53a6bc36-1e04-49b7-9082-735b7b6c8f10" + "x-ms-correlation-request-id": "deab68cf-1134-40ef-ab54-3d7dec0e1421", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "deab68cf-1134-40ef-ab54-3d7dec0e1421", + "x-ms-routing-request-id": "WESTUS2:20210616T000230Z:deab68cf-1134-40ef-ab54-3d7dec0e1421" }, "ResponseBody": [] }, @@ -5252,7 +5395,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c98333d94d0a26426a9a56ecd5334c0d", "x-ms-return-client-request-id": "true" }, @@ -5261,17 +5404,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:57 GMT", + "Date": "Wed, 16 Jun 2021 00:02:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9ba9d215-7e0a-455e-b711-7eb48aa601f9", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "9ba9d215-7e0a-455e-b711-7eb48aa601f9", - "x-ms-routing-request-id": "WESTUS2:20210519T185657Z:9ba9d215-7e0a-455e-b711-7eb48aa601f9" + "x-ms-correlation-request-id": "5ea05b4f-cae5-4356-a039-d6a6ee5eb6ab", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "5ea05b4f-cae5-4356-a039-d6a6ee5eb6ab", + "x-ms-routing-request-id": "WESTUS2:20210616T000231Z:5ea05b4f-cae5-4356-a039-d6a6ee5eb6ab" }, "ResponseBody": [] }, @@ -5280,7 +5423,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73d46439d8b54ebe77d4bb286af73b6d", "x-ms-return-client-request-id": "true" }, @@ -5289,17 +5432,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:58 GMT", + "Date": "Wed, 16 Jun 2021 00:02:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c9967f17-e807-4d8d-a84b-d195cc23de8c", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "c9967f17-e807-4d8d-a84b-d195cc23de8c", - "x-ms-routing-request-id": "WESTUS2:20210519T185659Z:c9967f17-e807-4d8d-a84b-d195cc23de8c" + "x-ms-correlation-request-id": "8891dab7-abe1-441e-a7e8-76647e8e7e28", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "8891dab7-abe1-441e-a7e8-76647e8e7e28", + "x-ms-routing-request-id": "WESTUS2:20210616T000232Z:8891dab7-abe1-441e-a7e8-76647e8e7e28" }, "ResponseBody": [] }, @@ -5308,7 +5451,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "079f83b019c32971935fd353931383ca", "x-ms-return-client-request-id": "true" }, @@ -5317,17 +5460,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:56:59 GMT", + "Date": "Wed, 16 Jun 2021 00:02:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "164c15ea-35ea-4b9a-b6bb-1c9dca68a722", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "164c15ea-35ea-4b9a-b6bb-1c9dca68a722", - "x-ms-routing-request-id": "WESTUS2:20210519T185700Z:164c15ea-35ea-4b9a-b6bb-1c9dca68a722" + "x-ms-correlation-request-id": "5b2c3b06-3eec-4934-bdd1-e43fec1c599b", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "5b2c3b06-3eec-4934-bdd1-e43fec1c599b", + "x-ms-routing-request-id": "WESTUS2:20210616T000233Z:5b2c3b06-3eec-4934-bdd1-e43fec1c599b" }, "ResponseBody": [] }, @@ -5336,7 +5479,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "04128c17e5c900e0753451359219bb72", "x-ms-return-client-request-id": "true" }, @@ -5345,17 +5488,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:00 GMT", + "Date": "Wed, 16 Jun 2021 00:02:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f053e2a6-ac1d-4362-b46d-fcfda8f13e43", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "f053e2a6-ac1d-4362-b46d-fcfda8f13e43", - "x-ms-routing-request-id": "WESTUS2:20210519T185701Z:f053e2a6-ac1d-4362-b46d-fcfda8f13e43" + "x-ms-correlation-request-id": "1ee5c2c9-ad24-48eb-8461-5597e204ac32", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "1ee5c2c9-ad24-48eb-8461-5597e204ac32", + "x-ms-routing-request-id": "WESTUS2:20210616T000234Z:1ee5c2c9-ad24-48eb-8461-5597e204ac32" }, "ResponseBody": [] }, @@ -5364,7 +5507,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "513ce95f4494204af2aadf56046abb63", "x-ms-return-client-request-id": "true" }, @@ -5373,17 +5516,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:01 GMT", + "Date": "Wed, 16 Jun 2021 00:02:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "578a511f-f5f0-4665-a69a-03fad0a1c53b", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "578a511f-f5f0-4665-a69a-03fad0a1c53b", - "x-ms-routing-request-id": "WESTUS2:20210519T185702Z:578a511f-f5f0-4665-a69a-03fad0a1c53b" + "x-ms-correlation-request-id": "36b27e8a-cec9-47b0-be8e-8b8402b322a6", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "36b27e8a-cec9-47b0-be8e-8b8402b322a6", + "x-ms-routing-request-id": "WESTUS2:20210616T000235Z:36b27e8a-cec9-47b0-be8e-8b8402b322a6" }, "ResponseBody": [] }, @@ -5392,7 +5535,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de11f05036e5cba4a39e928ec73c9679", "x-ms-return-client-request-id": "true" }, @@ -5401,17 +5544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:02 GMT", + "Date": "Wed, 16 Jun 2021 00:02:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1c5aaeaf-25b7-4626-b754-dacacdbf1c39", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "1c5aaeaf-25b7-4626-b754-dacacdbf1c39", - "x-ms-routing-request-id": "WESTUS2:20210519T185703Z:1c5aaeaf-25b7-4626-b754-dacacdbf1c39" + "x-ms-correlation-request-id": "a3df41e5-db04-462b-bd97-8dfde10dcde4", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "a3df41e5-db04-462b-bd97-8dfde10dcde4", + "x-ms-routing-request-id": "WESTUS2:20210616T000236Z:a3df41e5-db04-462b-bd97-8dfde10dcde4" }, "ResponseBody": [] }, @@ -5420,7 +5563,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9f461a332d7d23642f2121e068afb0a", "x-ms-return-client-request-id": "true" }, @@ -5429,17 +5572,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:03 GMT", + "Date": "Wed, 16 Jun 2021 00:02:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b167b16e-9ed4-4f51-8a8b-61576fcf99c3", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "b167b16e-9ed4-4f51-8a8b-61576fcf99c3", - "x-ms-routing-request-id": "WESTUS2:20210519T185704Z:b167b16e-9ed4-4f51-8a8b-61576fcf99c3" + "x-ms-correlation-request-id": "371511d6-b0de-44e7-abce-c057d2d08086", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "371511d6-b0de-44e7-abce-c057d2d08086", + "x-ms-routing-request-id": "WESTUS2:20210616T000237Z:371511d6-b0de-44e7-abce-c057d2d08086" }, "ResponseBody": [] }, @@ -5448,7 +5591,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a2e5ed79dd08298c4570adf5b1bb58b6", "x-ms-return-client-request-id": "true" }, @@ -5457,17 +5600,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:04 GMT", + "Date": "Wed, 16 Jun 2021 00:02:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "26e72ff1-490e-46d1-87a7-0677b5760541", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "26e72ff1-490e-46d1-87a7-0677b5760541", - "x-ms-routing-request-id": "WESTUS2:20210519T185705Z:26e72ff1-490e-46d1-87a7-0677b5760541" + "x-ms-correlation-request-id": "de2e6154-eff7-4add-b0fb-ebd9fea552df", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "de2e6154-eff7-4add-b0fb-ebd9fea552df", + "x-ms-routing-request-id": "WESTUS2:20210616T000238Z:de2e6154-eff7-4add-b0fb-ebd9fea552df" }, "ResponseBody": [] }, @@ -5476,7 +5619,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3b2651412761e8cb93e9bf32485c519", "x-ms-return-client-request-id": "true" }, @@ -5485,17 +5628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:05 GMT", + "Date": "Wed, 16 Jun 2021 00:02:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cbf513de-1fc0-4baf-b1d4-33951174ee08", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "cbf513de-1fc0-4baf-b1d4-33951174ee08", - "x-ms-routing-request-id": "WESTUS2:20210519T185706Z:cbf513de-1fc0-4baf-b1d4-33951174ee08" + "x-ms-correlation-request-id": "8df10f18-f22c-443b-9fc5-f6e941ead1e8", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "8df10f18-f22c-443b-9fc5-f6e941ead1e8", + "x-ms-routing-request-id": "WESTUS2:20210616T000239Z:8df10f18-f22c-443b-9fc5-f6e941ead1e8" }, "ResponseBody": [] }, @@ -5504,7 +5647,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da1588a3f357c571d5cb646684412086", "x-ms-return-client-request-id": "true" }, @@ -5513,17 +5656,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:06 GMT", + "Date": "Wed, 16 Jun 2021 00:02:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "00e6f9df-baa3-4592-8b32-2522734715ca", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "00e6f9df-baa3-4592-8b32-2522734715ca", - "x-ms-routing-request-id": "WESTUS2:20210519T185707Z:00e6f9df-baa3-4592-8b32-2522734715ca" + "x-ms-correlation-request-id": "8cccc56a-0c2b-4264-81d8-ad771f474f91", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "8cccc56a-0c2b-4264-81d8-ad771f474f91", + "x-ms-routing-request-id": "WESTUS2:20210616T000240Z:8cccc56a-0c2b-4264-81d8-ad771f474f91" }, "ResponseBody": [] }, @@ -5532,7 +5675,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a00a5b9958d7679361c6e9ca419805bf", "x-ms-return-client-request-id": "true" }, @@ -5541,17 +5684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:07 GMT", + "Date": "Wed, 16 Jun 2021 00:02:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0aaa9f03-023a-4114-9f4b-bd274795a3c9", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "0aaa9f03-023a-4114-9f4b-bd274795a3c9", - "x-ms-routing-request-id": "WESTUS2:20210519T185708Z:0aaa9f03-023a-4114-9f4b-bd274795a3c9" + "x-ms-correlation-request-id": "571d190a-ed78-40cc-acab-ba8a3a1f0bb5", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "571d190a-ed78-40cc-acab-ba8a3a1f0bb5", + "x-ms-routing-request-id": "WESTUS2:20210616T000241Z:571d190a-ed78-40cc-acab-ba8a3a1f0bb5" }, "ResponseBody": [] }, @@ -5560,7 +5703,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "295294ab7ea6205ff4eccdabad269a78", "x-ms-return-client-request-id": "true" }, @@ -5569,17 +5712,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:08 GMT", + "Date": "Wed, 16 Jun 2021 00:02:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "307b58a9-15f0-4b04-b8b4-02c17528426e", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "307b58a9-15f0-4b04-b8b4-02c17528426e", - "x-ms-routing-request-id": "WESTUS2:20210519T185709Z:307b58a9-15f0-4b04-b8b4-02c17528426e" + "x-ms-correlation-request-id": "23918d30-db7a-4395-92f7-b89cec178d17", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "23918d30-db7a-4395-92f7-b89cec178d17", + "x-ms-routing-request-id": "WESTUS2:20210616T000243Z:23918d30-db7a-4395-92f7-b89cec178d17" }, "ResponseBody": [] }, @@ -5588,7 +5731,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c859151d247b4a41f4ad78900aa6843c", "x-ms-return-client-request-id": "true" }, @@ -5597,17 +5740,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:09 GMT", + "Date": "Wed, 16 Jun 2021 00:02:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b6bbafef-caaf-4a0c-997a-42c0f47eb23b", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "b6bbafef-caaf-4a0c-997a-42c0f47eb23b", - "x-ms-routing-request-id": "WESTUS2:20210519T185710Z:b6bbafef-caaf-4a0c-997a-42c0f47eb23b" + "x-ms-correlation-request-id": "c65db64a-b337-4513-b657-824882fa53e3", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "c65db64a-b337-4513-b657-824882fa53e3", + "x-ms-routing-request-id": "WESTUS2:20210616T000244Z:c65db64a-b337-4513-b657-824882fa53e3" }, "ResponseBody": [] }, @@ -5616,7 +5759,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efbaa4c6f7ef1bdffceaabea8ae8b93b", "x-ms-return-client-request-id": "true" }, @@ -5625,17 +5768,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:10 GMT", + "Date": "Wed, 16 Jun 2021 00:02:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "57e44e35-96e9-4ef1-b4aa-f89e5024fa35", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "57e44e35-96e9-4ef1-b4aa-f89e5024fa35", - "x-ms-routing-request-id": "WESTUS2:20210519T185711Z:57e44e35-96e9-4ef1-b4aa-f89e5024fa35" + "x-ms-correlation-request-id": "ce4f6153-0659-4e6b-9aac-93481483325e", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "ce4f6153-0659-4e6b-9aac-93481483325e", + "x-ms-routing-request-id": "WESTUS2:20210616T000245Z:ce4f6153-0659-4e6b-9aac-93481483325e" }, "ResponseBody": [] }, @@ -5644,7 +5787,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cad712b3c3e8744520734f805ce154d", "x-ms-return-client-request-id": "true" }, @@ -5653,17 +5796,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:11 GMT", + "Date": "Wed, 16 Jun 2021 00:02:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "feb66a81-f925-466a-80c1-7426872a34e9", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "feb66a81-f925-466a-80c1-7426872a34e9", - "x-ms-routing-request-id": "WESTUS2:20210519T185712Z:feb66a81-f925-466a-80c1-7426872a34e9" + "x-ms-correlation-request-id": "df2366aa-76be-495a-a948-057421455649", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "df2366aa-76be-495a-a948-057421455649", + "x-ms-routing-request-id": "WESTUS2:20210616T000246Z:df2366aa-76be-495a-a948-057421455649" }, "ResponseBody": [] }, @@ -5672,7 +5815,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09e49168aa6b2589353ecb917857c00c", "x-ms-return-client-request-id": "true" }, @@ -5681,17 +5824,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:12 GMT", + "Date": "Wed, 16 Jun 2021 00:02:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "39320ba0-04a9-4144-9012-d0c4913bf25b", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "39320ba0-04a9-4144-9012-d0c4913bf25b", - "x-ms-routing-request-id": "WESTUS2:20210519T185713Z:39320ba0-04a9-4144-9012-d0c4913bf25b" + "x-ms-correlation-request-id": "dff728fa-b812-4616-8960-46857ea603c8", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "dff728fa-b812-4616-8960-46857ea603c8", + "x-ms-routing-request-id": "WESTUS2:20210616T000247Z:dff728fa-b812-4616-8960-46857ea603c8" }, "ResponseBody": [] }, @@ -5700,7 +5843,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "99653df457f989fd60339de8c3e6162d", "x-ms-return-client-request-id": "true" }, @@ -5709,17 +5852,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:13 GMT", + "Date": "Wed, 16 Jun 2021 00:02:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "404a47bf-c670-4886-b586-5dd5e22f2542", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "404a47bf-c670-4886-b586-5dd5e22f2542", - "x-ms-routing-request-id": "WESTUS2:20210519T185714Z:404a47bf-c670-4886-b586-5dd5e22f2542" + "x-ms-correlation-request-id": "2fdfa57d-b942-4525-a38c-6cf612b1953f", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "2fdfa57d-b942-4525-a38c-6cf612b1953f", + "x-ms-routing-request-id": "WESTUS2:20210616T000248Z:2fdfa57d-b942-4525-a38c-6cf612b1953f" }, "ResponseBody": [] }, @@ -5728,7 +5871,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f9815dd4b00381cfe887f70071b30efb", "x-ms-return-client-request-id": "true" }, @@ -5737,17 +5880,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:14 GMT", + "Date": "Wed, 16 Jun 2021 00:02:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "feb8197e-d896-4a48-b3ee-fe395f1809ee", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "feb8197e-d896-4a48-b3ee-fe395f1809ee", - "x-ms-routing-request-id": "WESTUS2:20210519T185715Z:feb8197e-d896-4a48-b3ee-fe395f1809ee" + "x-ms-correlation-request-id": "e1726607-cea9-423c-98d4-00cb520d06d4", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "e1726607-cea9-423c-98d4-00cb520d06d4", + "x-ms-routing-request-id": "WESTUS2:20210616T000249Z:e1726607-cea9-423c-98d4-00cb520d06d4" }, "ResponseBody": [] }, @@ -5756,7 +5899,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c80427467c691154935ba9380da0624e", "x-ms-return-client-request-id": "true" }, @@ -5765,17 +5908,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:16 GMT", + "Date": "Wed, 16 Jun 2021 00:02:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0d5e1e3a-e638-4550-9985-2893ed5ba36f", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "0d5e1e3a-e638-4550-9985-2893ed5ba36f", - "x-ms-routing-request-id": "WESTUS2:20210519T185716Z:0d5e1e3a-e638-4550-9985-2893ed5ba36f" + "x-ms-correlation-request-id": "25ffb8cc-8a36-4723-8abf-5d1094994423", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "25ffb8cc-8a36-4723-8abf-5d1094994423", + "x-ms-routing-request-id": "WESTUS2:20210616T000250Z:25ffb8cc-8a36-4723-8abf-5d1094994423" }, "ResponseBody": [] }, @@ -5784,7 +5927,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1bbc9d27c6d544096de4b17260fd17ac", "x-ms-return-client-request-id": "true" }, @@ -5793,17 +5936,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:17 GMT", + "Date": "Wed, 16 Jun 2021 00:02:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a7fe1746-2742-4691-af96-482f3c053d5a", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "a7fe1746-2742-4691-af96-482f3c053d5a", - "x-ms-routing-request-id": "WESTUS2:20210519T185717Z:a7fe1746-2742-4691-af96-482f3c053d5a" + "x-ms-correlation-request-id": "e8ca220f-2590-47cd-ac1f-3f62f31f97a0", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "e8ca220f-2590-47cd-ac1f-3f62f31f97a0", + "x-ms-routing-request-id": "WESTUS2:20210616T000251Z:e8ca220f-2590-47cd-ac1f-3f62f31f97a0" }, "ResponseBody": [] }, @@ -5812,7 +5955,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ba1a2254ee258c4097066a707977347", "x-ms-return-client-request-id": "true" }, @@ -5821,17 +5964,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:18 GMT", + "Date": "Wed, 16 Jun 2021 00:02:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "423a8140-f190-4c32-b09c-025fad282091", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "423a8140-f190-4c32-b09c-025fad282091", - "x-ms-routing-request-id": "WESTUS2:20210519T185718Z:423a8140-f190-4c32-b09c-025fad282091" + "x-ms-correlation-request-id": "bc349bd8-ae72-48a2-95d6-9eab2410ac18", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "bc349bd8-ae72-48a2-95d6-9eab2410ac18", + "x-ms-routing-request-id": "WESTUS2:20210616T000252Z:bc349bd8-ae72-48a2-95d6-9eab2410ac18" }, "ResponseBody": [] }, @@ -5840,7 +5983,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d3d8a824f3f67f251ec05a85cae1b195", "x-ms-return-client-request-id": "true" }, @@ -5849,17 +5992,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:19 GMT", + "Date": "Wed, 16 Jun 2021 00:02:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bac9fa10-3302-4c73-b85f-c68cc0942d6f", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "bac9fa10-3302-4c73-b85f-c68cc0942d6f", - "x-ms-routing-request-id": "WESTUS2:20210519T185719Z:bac9fa10-3302-4c73-b85f-c68cc0942d6f" + "x-ms-correlation-request-id": "bc849b66-38c6-46d7-be3c-47c6aa3ce623", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "bc849b66-38c6-46d7-be3c-47c6aa3ce623", + "x-ms-routing-request-id": "WESTUS2:20210616T000253Z:bc849b66-38c6-46d7-be3c-47c6aa3ce623" }, "ResponseBody": [] }, @@ -5868,7 +6011,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b12fc43c6ffd96cd964116560613cd6", "x-ms-return-client-request-id": "true" }, @@ -5877,17 +6020,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:20 GMT", + "Date": "Wed, 16 Jun 2021 00:02:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6c245e4e-42d2-476a-b879-fa0525e5ed52", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "6c245e4e-42d2-476a-b879-fa0525e5ed52", - "x-ms-routing-request-id": "WESTUS2:20210519T185720Z:6c245e4e-42d2-476a-b879-fa0525e5ed52" + "x-ms-correlation-request-id": "29e6aa65-e807-40b2-83e4-548eec9e2a88", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "29e6aa65-e807-40b2-83e4-548eec9e2a88", + "x-ms-routing-request-id": "WESTUS2:20210616T000254Z:29e6aa65-e807-40b2-83e4-548eec9e2a88" }, "ResponseBody": [] }, @@ -5896,7 +6039,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b74d6a70442432b67c217d21f33e8d27", "x-ms-return-client-request-id": "true" }, @@ -5905,17 +6048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:21 GMT", + "Date": "Wed, 16 Jun 2021 00:02:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "138a8f1c-4a20-479d-8201-28146168336e", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "138a8f1c-4a20-479d-8201-28146168336e", - "x-ms-routing-request-id": "WESTUS2:20210519T185721Z:138a8f1c-4a20-479d-8201-28146168336e" + "x-ms-correlation-request-id": "e677982f-8cc1-4fe4-8ec9-c252d492b1f6", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "e677982f-8cc1-4fe4-8ec9-c252d492b1f6", + "x-ms-routing-request-id": "WESTUS2:20210616T000255Z:e677982f-8cc1-4fe4-8ec9-c252d492b1f6" }, "ResponseBody": [] }, @@ -5924,7 +6067,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0b64d0be08845d473bfefa92e1bf1ebc", "x-ms-return-client-request-id": "true" }, @@ -5933,17 +6076,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:22 GMT", + "Date": "Wed, 16 Jun 2021 00:02:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c0b0da86-fbc4-4cdb-b40d-1b2088e72b57", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "c0b0da86-fbc4-4cdb-b40d-1b2088e72b57", - "x-ms-routing-request-id": "WESTUS2:20210519T185722Z:c0b0da86-fbc4-4cdb-b40d-1b2088e72b57" + "x-ms-correlation-request-id": "85e334a3-66c9-42ad-a649-e1398b0268cd", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "85e334a3-66c9-42ad-a649-e1398b0268cd", + "x-ms-routing-request-id": "WESTUS2:20210616T000256Z:85e334a3-66c9-42ad-a649-e1398b0268cd" }, "ResponseBody": [] }, @@ -5952,7 +6095,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60148483f994ff7145e0eedd494ae69a", "x-ms-return-client-request-id": "true" }, @@ -5961,17 +6104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:23 GMT", + "Date": "Wed, 16 Jun 2021 00:02:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0269392e-f533-4de8-9eec-032b61307a55", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "0269392e-f533-4de8-9eec-032b61307a55", - "x-ms-routing-request-id": "WESTUS2:20210519T185723Z:0269392e-f533-4de8-9eec-032b61307a55" + "x-ms-correlation-request-id": "e3c017c5-ba98-4b8d-9a52-9cb4c3b091de", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "e3c017c5-ba98-4b8d-9a52-9cb4c3b091de", + "x-ms-routing-request-id": "WESTUS2:20210616T000257Z:e3c017c5-ba98-4b8d-9a52-9cb4c3b091de" }, "ResponseBody": [] }, @@ -5980,7 +6123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90a6e9d731fd685122ef7c25492450bd", "x-ms-return-client-request-id": "true" }, @@ -5989,17 +6132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:24 GMT", + "Date": "Wed, 16 Jun 2021 00:02:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7e65419e-90ba-46b4-bcc3-303364c8e4d0", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "7e65419e-90ba-46b4-bcc3-303364c8e4d0", - "x-ms-routing-request-id": "WESTUS2:20210519T185724Z:7e65419e-90ba-46b4-bcc3-303364c8e4d0" + "x-ms-correlation-request-id": "f30e480a-3ce3-4117-a5dd-8439a045a9d3", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "f30e480a-3ce3-4117-a5dd-8439a045a9d3", + "x-ms-routing-request-id": "WESTUS2:20210616T000258Z:f30e480a-3ce3-4117-a5dd-8439a045a9d3" }, "ResponseBody": [] }, @@ -6008,7 +6151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6f9ec0022c29c5935e64c5a3196914f1", "x-ms-return-client-request-id": "true" }, @@ -6017,17 +6160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:25 GMT", + "Date": "Wed, 16 Jun 2021 00:02:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9a7b4e4e-de3f-44b6-b914-289fc3007e13", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "9a7b4e4e-de3f-44b6-b914-289fc3007e13", - "x-ms-routing-request-id": "WESTUS2:20210519T185725Z:9a7b4e4e-de3f-44b6-b914-289fc3007e13" + "x-ms-correlation-request-id": "bc175c4f-6241-47f2-818b-b909948ddf1c", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "bc175c4f-6241-47f2-818b-b909948ddf1c", + "x-ms-routing-request-id": "WESTUS2:20210616T000259Z:bc175c4f-6241-47f2-818b-b909948ddf1c" }, "ResponseBody": [] }, @@ -6036,7 +6179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7ba60188e1851bf32ac3ea47d4bb521", "x-ms-return-client-request-id": "true" }, @@ -6045,17 +6188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:26 GMT", + "Date": "Wed, 16 Jun 2021 00:03:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6018961d-f7be-4302-a325-7c4c7df73f27", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "6018961d-f7be-4302-a325-7c4c7df73f27", - "x-ms-routing-request-id": "WESTUS2:20210519T185726Z:6018961d-f7be-4302-a325-7c4c7df73f27" + "x-ms-correlation-request-id": "79bb35dc-7c85-4602-8f62-77ea213496a5", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "79bb35dc-7c85-4602-8f62-77ea213496a5", + "x-ms-routing-request-id": "WESTUS2:20210616T000300Z:79bb35dc-7c85-4602-8f62-77ea213496a5" }, "ResponseBody": [] }, @@ -6064,7 +6207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "88db309076abaa7056e131986cad4eb9", "x-ms-return-client-request-id": "true" }, @@ -6073,17 +6216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:27 GMT", + "Date": "Wed, 16 Jun 2021 00:03:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d09a1be9-7015-453d-9cd3-8604fb74aeed", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "d09a1be9-7015-453d-9cd3-8604fb74aeed", - "x-ms-routing-request-id": "WESTUS2:20210519T185727Z:d09a1be9-7015-453d-9cd3-8604fb74aeed" + "x-ms-correlation-request-id": "e9af5d07-5e57-48dd-a75c-975b6400ceff", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "e9af5d07-5e57-48dd-a75c-975b6400ceff", + "x-ms-routing-request-id": "WESTUS2:20210616T000301Z:e9af5d07-5e57-48dd-a75c-975b6400ceff" }, "ResponseBody": [] }, @@ -6092,7 +6235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e90c8bdb596974a4014d3c7deeef4813", "x-ms-return-client-request-id": "true" }, @@ -6101,17 +6244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:28 GMT", + "Date": "Wed, 16 Jun 2021 00:03:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "704382fe-b099-47e6-b761-217f2082a311", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "704382fe-b099-47e6-b761-217f2082a311", - "x-ms-routing-request-id": "WESTUS2:20210519T185728Z:704382fe-b099-47e6-b761-217f2082a311" + "x-ms-correlation-request-id": "86f4eaa7-1cab-49df-9831-27cc68252c28", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "86f4eaa7-1cab-49df-9831-27cc68252c28", + "x-ms-routing-request-id": "WESTUS2:20210616T000302Z:86f4eaa7-1cab-49df-9831-27cc68252c28" }, "ResponseBody": [] }, @@ -6120,7 +6263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e813a3af8b8ea245ef10a0375c26e485", "x-ms-return-client-request-id": "true" }, @@ -6129,17 +6272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:29 GMT", + "Date": "Wed, 16 Jun 2021 00:03:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fb9d8b4b-da41-4bf3-a61c-6980a6f950b4", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "fb9d8b4b-da41-4bf3-a61c-6980a6f950b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185729Z:fb9d8b4b-da41-4bf3-a61c-6980a6f950b4" + "x-ms-correlation-request-id": "16c4c7cb-0ed3-4815-ba38-31e2c0fae817", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "16c4c7cb-0ed3-4815-ba38-31e2c0fae817", + "x-ms-routing-request-id": "WESTUS2:20210616T000303Z:16c4c7cb-0ed3-4815-ba38-31e2c0fae817" }, "ResponseBody": [] }, @@ -6148,7 +6291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1c8855dcc3e36b88c66875e3af2bb67", "x-ms-return-client-request-id": "true" }, @@ -6157,17 +6300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:30 GMT", + "Date": "Wed, 16 Jun 2021 00:03:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "66cb786e-5b52-4e0e-a394-d57aac1704fd", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "66cb786e-5b52-4e0e-a394-d57aac1704fd", - "x-ms-routing-request-id": "WESTUS2:20210519T185731Z:66cb786e-5b52-4e0e-a394-d57aac1704fd" + "x-ms-correlation-request-id": "16245185-359b-4649-84a6-a40d665fa8cc", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "16245185-359b-4649-84a6-a40d665fa8cc", + "x-ms-routing-request-id": "WESTUS2:20210616T000304Z:16245185-359b-4649-84a6-a40d665fa8cc" }, "ResponseBody": [] }, @@ -6176,7 +6319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9e91e9866994f2a456af958b86d18da", "x-ms-return-client-request-id": "true" }, @@ -6185,17 +6328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:31 GMT", + "Date": "Wed, 16 Jun 2021 00:03:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "99616952-a585-4af3-9481-0cc7c26620db", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "99616952-a585-4af3-9481-0cc7c26620db", - "x-ms-routing-request-id": "WESTUS2:20210519T185732Z:99616952-a585-4af3-9481-0cc7c26620db" + "x-ms-correlation-request-id": "d8a973e8-fc19-44ee-ba23-36cd57ec1314", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "d8a973e8-fc19-44ee-ba23-36cd57ec1314", + "x-ms-routing-request-id": "WESTUS2:20210616T000305Z:d8a973e8-fc19-44ee-ba23-36cd57ec1314" }, "ResponseBody": [] }, @@ -6204,7 +6347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "691fb6685626e3d4ebdd5c2704e668fc", "x-ms-return-client-request-id": "true" }, @@ -6213,17 +6356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:32 GMT", + "Date": "Wed, 16 Jun 2021 00:03:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "90c557b6-2e2f-4a08-b3d2-78d898cb0b60", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "90c557b6-2e2f-4a08-b3d2-78d898cb0b60", - "x-ms-routing-request-id": "WESTUS2:20210519T185733Z:90c557b6-2e2f-4a08-b3d2-78d898cb0b60" + "x-ms-correlation-request-id": "f48d0d00-5b59-414a-af0c-2c80802b7823", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "f48d0d00-5b59-414a-af0c-2c80802b7823", + "x-ms-routing-request-id": "WESTUS2:20210616T000306Z:f48d0d00-5b59-414a-af0c-2c80802b7823" }, "ResponseBody": [] }, @@ -6232,7 +6375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e9f39541b3df7eb5a79acd3d25f7e1e", "x-ms-return-client-request-id": "true" }, @@ -6241,17 +6384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:33 GMT", + "Date": "Wed, 16 Jun 2021 00:03:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fc4434d5-4456-43ca-b112-3b6d86cb0b00", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "fc4434d5-4456-43ca-b112-3b6d86cb0b00", - "x-ms-routing-request-id": "WESTUS2:20210519T185734Z:fc4434d5-4456-43ca-b112-3b6d86cb0b00" + "x-ms-correlation-request-id": "68f69a23-0d00-4f1a-afca-02188f1a22f1", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "68f69a23-0d00-4f1a-afca-02188f1a22f1", + "x-ms-routing-request-id": "WESTUS2:20210616T000307Z:68f69a23-0d00-4f1a-afca-02188f1a22f1" }, "ResponseBody": [] }, @@ -6260,7 +6403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "83f6ac4e52d341414906ddbc09034b5f", "x-ms-return-client-request-id": "true" }, @@ -6269,17 +6412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:34 GMT", + "Date": "Wed, 16 Jun 2021 00:03:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72", - "x-ms-routing-request-id": "WESTUS2:20210519T185735Z:d6ded4e2-ca64-48bd-8bc0-b3bcc98d7a72" + "x-ms-correlation-request-id": "b4fcfa3a-adbc-4d78-ab05-2f57b6d34aea", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "b4fcfa3a-adbc-4d78-ab05-2f57b6d34aea", + "x-ms-routing-request-id": "WESTUS2:20210616T000308Z:b4fcfa3a-adbc-4d78-ab05-2f57b6d34aea" }, "ResponseBody": [] }, @@ -6288,7 +6431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7e04fc02d9ce4c9dcb270fadaa01108c", "x-ms-return-client-request-id": "true" }, @@ -6297,17 +6440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:35 GMT", + "Date": "Wed, 16 Jun 2021 00:03:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ead90e26-72d8-4e09-847f-be5918cda009", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "ead90e26-72d8-4e09-847f-be5918cda009", - "x-ms-routing-request-id": "WESTUS2:20210519T185736Z:ead90e26-72d8-4e09-847f-be5918cda009" + "x-ms-correlation-request-id": "92e0d375-f4d4-47b0-971e-60c5fc3d8b2d", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "92e0d375-f4d4-47b0-971e-60c5fc3d8b2d", + "x-ms-routing-request-id": "WESTUS2:20210616T000309Z:92e0d375-f4d4-47b0-971e-60c5fc3d8b2d" }, "ResponseBody": [] }, @@ -6316,7 +6459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57d83d5ee5f00229f85df4373e2fee57", "x-ms-return-client-request-id": "true" }, @@ -6325,17 +6468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:36 GMT", + "Date": "Wed, 16 Jun 2021 00:03:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "323aec35-c069-4fb3-a7f4-c7e58db2babe", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "323aec35-c069-4fb3-a7f4-c7e58db2babe", - "x-ms-routing-request-id": "WESTUS2:20210519T185737Z:323aec35-c069-4fb3-a7f4-c7e58db2babe" + "x-ms-correlation-request-id": "b1802ad7-78d9-4249-885c-5286d991e1a7", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "b1802ad7-78d9-4249-885c-5286d991e1a7", + "x-ms-routing-request-id": "WESTUS2:20210616T000310Z:b1802ad7-78d9-4249-885c-5286d991e1a7" }, "ResponseBody": [] }, @@ -6344,7 +6487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d5d14c2dff5a74500fa9b8ab43939748", "x-ms-return-client-request-id": "true" }, @@ -6353,17 +6496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:37 GMT", + "Date": "Wed, 16 Jun 2021 00:03:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04", - "x-ms-routing-request-id": "WESTUS2:20210519T185738Z:9ab5faac-53ff-47b4-8c7f-1d07e6b9fa04" + "x-ms-correlation-request-id": "73346acf-265e-4820-9aaa-3d86f1b4272c", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "73346acf-265e-4820-9aaa-3d86f1b4272c", + "x-ms-routing-request-id": "WESTUS2:20210616T000311Z:73346acf-265e-4820-9aaa-3d86f1b4272c" }, "ResponseBody": [] }, @@ -6372,7 +6515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb5e51f5f32a1d6fd3028670e5660e9b", "x-ms-return-client-request-id": "true" }, @@ -6381,17 +6524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:38 GMT", + "Date": "Wed, 16 Jun 2021 00:03:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2e6313e3-8a26-4dbc-8466-43fc72c22dcf", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "2e6313e3-8a26-4dbc-8466-43fc72c22dcf", - "x-ms-routing-request-id": "WESTUS2:20210519T185739Z:2e6313e3-8a26-4dbc-8466-43fc72c22dcf" + "x-ms-correlation-request-id": "59541d2f-e56d-480e-9b9e-1bc8422cbcc8", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "59541d2f-e56d-480e-9b9e-1bc8422cbcc8", + "x-ms-routing-request-id": "WESTUS2:20210616T000313Z:59541d2f-e56d-480e-9b9e-1bc8422cbcc8" }, "ResponseBody": [] }, @@ -6400,7 +6543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5d7fb8393a2f5e31ed6348472c7dbe64", "x-ms-return-client-request-id": "true" }, @@ -6409,17 +6552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:39 GMT", + "Date": "Wed, 16 Jun 2021 00:03:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d79c1cf8-ffd5-4c40-8d01-df175e27e53b", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "d79c1cf8-ffd5-4c40-8d01-df175e27e53b", - "x-ms-routing-request-id": "WESTUS2:20210519T185740Z:d79c1cf8-ffd5-4c40-8d01-df175e27e53b" + "x-ms-correlation-request-id": "12350924-3a31-4c73-b8bc-8e62e65d7037", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "12350924-3a31-4c73-b8bc-8e62e65d7037", + "x-ms-routing-request-id": "WESTUS2:20210616T000314Z:12350924-3a31-4c73-b8bc-8e62e65d7037" }, "ResponseBody": [] }, @@ -6428,7 +6571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed41acc622d13a2cddb3025879e08fa8", "x-ms-return-client-request-id": "true" }, @@ -6437,17 +6580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:40 GMT", + "Date": "Wed, 16 Jun 2021 00:03:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dcfd8403-51f6-4545-9469-f10028fd4d9d", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "dcfd8403-51f6-4545-9469-f10028fd4d9d", - "x-ms-routing-request-id": "WESTUS2:20210519T185741Z:dcfd8403-51f6-4545-9469-f10028fd4d9d" + "x-ms-correlation-request-id": "64dbad09-3b1f-4e4f-b2a6-82b0bfbf7d07", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "64dbad09-3b1f-4e4f-b2a6-82b0bfbf7d07", + "x-ms-routing-request-id": "WESTUS2:20210616T000315Z:64dbad09-3b1f-4e4f-b2a6-82b0bfbf7d07" }, "ResponseBody": [] }, @@ -6456,7 +6599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8b721c9a3914ba181fffdec7aa28f055", "x-ms-return-client-request-id": "true" }, @@ -6465,17 +6608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:41 GMT", + "Date": "Wed, 16 Jun 2021 00:03:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b3396afd-b06c-41bb-8a8b-e9db115e8d42", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "b3396afd-b06c-41bb-8a8b-e9db115e8d42", - "x-ms-routing-request-id": "WESTUS2:20210519T185742Z:b3396afd-b06c-41bb-8a8b-e9db115e8d42" + "x-ms-correlation-request-id": "9109ce4c-db3a-436c-861b-93e4b22394fd", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "9109ce4c-db3a-436c-861b-93e4b22394fd", + "x-ms-routing-request-id": "WESTUS2:20210616T000316Z:9109ce4c-db3a-436c-861b-93e4b22394fd" }, "ResponseBody": [] }, @@ -6484,7 +6627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38aa2143212416ca8b457f7b37d9e50d", "x-ms-return-client-request-id": "true" }, @@ -6493,17 +6636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:42 GMT", + "Date": "Wed, 16 Jun 2021 00:03:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ebbbb2c8-8ab5-4799-b8f7-5529d348872d", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "ebbbb2c8-8ab5-4799-b8f7-5529d348872d", - "x-ms-routing-request-id": "WESTUS2:20210519T185743Z:ebbbb2c8-8ab5-4799-b8f7-5529d348872d" + "x-ms-correlation-request-id": "2451cd84-6f89-4180-9c3b-bcf29729a47f", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "2451cd84-6f89-4180-9c3b-bcf29729a47f", + "x-ms-routing-request-id": "WESTUS2:20210616T000317Z:2451cd84-6f89-4180-9c3b-bcf29729a47f" }, "ResponseBody": [] }, @@ -6512,7 +6655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "10ac9fd3330b8c509386cdd144658fb5", "x-ms-return-client-request-id": "true" }, @@ -6521,17 +6664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:43 GMT", + "Date": "Wed, 16 Jun 2021 00:03:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e519a148-0ae2-4c6e-b275-b84728bd567d", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "e519a148-0ae2-4c6e-b275-b84728bd567d", - "x-ms-routing-request-id": "WESTUS2:20210519T185744Z:e519a148-0ae2-4c6e-b275-b84728bd567d" + "x-ms-correlation-request-id": "331d0161-e0b2-4a90-95d6-14fba708784b", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "331d0161-e0b2-4a90-95d6-14fba708784b", + "x-ms-routing-request-id": "WESTUS2:20210616T000318Z:331d0161-e0b2-4a90-95d6-14fba708784b" }, "ResponseBody": [] }, @@ -6540,7 +6683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5815adc356357884515cffcfb99c8345", "x-ms-return-client-request-id": "true" }, @@ -6549,17 +6692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:44 GMT", + "Date": "Wed, 16 Jun 2021 00:03:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dc2c103c-4c29-41ca-8280-87b435437b0f", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "dc2c103c-4c29-41ca-8280-87b435437b0f", - "x-ms-routing-request-id": "WESTUS2:20210519T185745Z:dc2c103c-4c29-41ca-8280-87b435437b0f" + "x-ms-correlation-request-id": "f435430d-725e-4c7d-8a7f-baab31b9659c", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "f435430d-725e-4c7d-8a7f-baab31b9659c", + "x-ms-routing-request-id": "WESTUS2:20210616T000319Z:f435430d-725e-4c7d-8a7f-baab31b9659c" }, "ResponseBody": [] }, @@ -6568,7 +6711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0af3d11adf7b0f49d11da59d54f8d226", "x-ms-return-client-request-id": "true" }, @@ -6577,17 +6720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:46 GMT", + "Date": "Wed, 16 Jun 2021 00:03:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b1677b71-1ba8-4c5f-87d3-44211a59497d", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "b1677b71-1ba8-4c5f-87d3-44211a59497d", - "x-ms-routing-request-id": "WESTUS2:20210519T185746Z:b1677b71-1ba8-4c5f-87d3-44211a59497d" + "x-ms-correlation-request-id": "19d58f92-0949-440c-b792-1efea01187af", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "19d58f92-0949-440c-b792-1efea01187af", + "x-ms-routing-request-id": "WESTUS2:20210616T000320Z:19d58f92-0949-440c-b792-1efea01187af" }, "ResponseBody": [] }, @@ -6596,7 +6739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8ab8cab58cc47cd71b34bfaf3481d3f6", "x-ms-return-client-request-id": "true" }, @@ -6605,17 +6748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:47 GMT", + "Date": "Wed, 16 Jun 2021 00:03:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cc1ca691-1752-47fa-9c11-b37f8be3cae1", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "cc1ca691-1752-47fa-9c11-b37f8be3cae1", - "x-ms-routing-request-id": "WESTUS2:20210519T185747Z:cc1ca691-1752-47fa-9c11-b37f8be3cae1" + "x-ms-correlation-request-id": "6656f8e7-23d6-4666-8dea-70638ca46e08", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "6656f8e7-23d6-4666-8dea-70638ca46e08", + "x-ms-routing-request-id": "WESTUS2:20210616T000321Z:6656f8e7-23d6-4666-8dea-70638ca46e08" }, "ResponseBody": [] }, @@ -6624,7 +6767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72b788038471e33a63058718b1e62459", "x-ms-return-client-request-id": "true" }, @@ -6633,17 +6776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:48 GMT", + "Date": "Wed, 16 Jun 2021 00:03:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1", - "x-ms-routing-request-id": "WESTUS2:20210519T185748Z:cf9cdd37-2edc-4e67-a7a4-afbc2ee6bed1" + "x-ms-correlation-request-id": "1021ebd1-76d1-497c-b4f0-0d15a309c6f2", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "1021ebd1-76d1-497c-b4f0-0d15a309c6f2", + "x-ms-routing-request-id": "WESTUS2:20210616T000322Z:1021ebd1-76d1-497c-b4f0-0d15a309c6f2" }, "ResponseBody": [] }, @@ -6652,7 +6795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef19d88af9e48d81fa76ef46209ada4f", "x-ms-return-client-request-id": "true" }, @@ -6661,17 +6804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:49 GMT", + "Date": "Wed, 16 Jun 2021 00:03:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ddeaf14f-8739-4c52-90a2-8663de8bcb5f", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "ddeaf14f-8739-4c52-90a2-8663de8bcb5f", - "x-ms-routing-request-id": "WESTUS2:20210519T185749Z:ddeaf14f-8739-4c52-90a2-8663de8bcb5f" + "x-ms-correlation-request-id": "a7165f04-ba88-4ee3-ae1a-5acde6d4da9b", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "a7165f04-ba88-4ee3-ae1a-5acde6d4da9b", + "x-ms-routing-request-id": "WESTUS2:20210616T000323Z:a7165f04-ba88-4ee3-ae1a-5acde6d4da9b" }, "ResponseBody": [] }, @@ -6680,7 +6823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cb99ae4a5f4031b58fd526be05bfca35", "x-ms-return-client-request-id": "true" }, @@ -6689,17 +6832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:50 GMT", + "Date": "Wed, 16 Jun 2021 00:03:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0c174926-d398-4c20-9eeb-a980d95bb522", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "0c174926-d398-4c20-9eeb-a980d95bb522", - "x-ms-routing-request-id": "WESTUS2:20210519T185750Z:0c174926-d398-4c20-9eeb-a980d95bb522" + "x-ms-correlation-request-id": "95e3c644-a311-4899-a9ea-be657559eb0d", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "95e3c644-a311-4899-a9ea-be657559eb0d", + "x-ms-routing-request-id": "WESTUS2:20210616T000324Z:95e3c644-a311-4899-a9ea-be657559eb0d" }, "ResponseBody": [] }, @@ -6708,7 +6851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b256610e3680a12062a78fb95f3c2c9", "x-ms-return-client-request-id": "true" }, @@ -6717,17 +6860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:51 GMT", + "Date": "Wed, 16 Jun 2021 00:03:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2a18ddac-e34b-4789-b403-15a39c0064ae", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "2a18ddac-e34b-4789-b403-15a39c0064ae", - "x-ms-routing-request-id": "WESTUS2:20210519T185751Z:2a18ddac-e34b-4789-b403-15a39c0064ae" + "x-ms-correlation-request-id": "830f9eb9-d307-47ca-97dc-ef07ad227d37", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "830f9eb9-d307-47ca-97dc-ef07ad227d37", + "x-ms-routing-request-id": "WESTUS2:20210616T000325Z:830f9eb9-d307-47ca-97dc-ef07ad227d37" }, "ResponseBody": [] }, @@ -6736,7 +6879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03cd372a584c2a1823e75f0fd2c3873a", "x-ms-return-client-request-id": "true" }, @@ -6745,17 +6888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:52 GMT", + "Date": "Wed, 16 Jun 2021 00:03:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b65adda1-4c09-4e87-8f8b-67071b264eb5", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "b65adda1-4c09-4e87-8f8b-67071b264eb5", - "x-ms-routing-request-id": "WESTUS2:20210519T185752Z:b65adda1-4c09-4e87-8f8b-67071b264eb5" + "x-ms-correlation-request-id": "18d7670c-6ed2-413f-a428-4f6190e07932", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "18d7670c-6ed2-413f-a428-4f6190e07932", + "x-ms-routing-request-id": "WESTUS2:20210616T000326Z:18d7670c-6ed2-413f-a428-4f6190e07932" }, "ResponseBody": [] }, @@ -6764,7 +6907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba36baab7f7566e79b8ec515e6ba9c9b", "x-ms-return-client-request-id": "true" }, @@ -6773,17 +6916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:53 GMT", + "Date": "Wed, 16 Jun 2021 00:03:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4d76c211-897f-4424-aaa4-fffd81b3f63d", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "4d76c211-897f-4424-aaa4-fffd81b3f63d", - "x-ms-routing-request-id": "WESTUS2:20210519T185753Z:4d76c211-897f-4424-aaa4-fffd81b3f63d" + "x-ms-correlation-request-id": "1408a65c-dcea-4981-84c5-1c547698d0be", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "1408a65c-dcea-4981-84c5-1c547698d0be", + "x-ms-routing-request-id": "WESTUS2:20210616T000327Z:1408a65c-dcea-4981-84c5-1c547698d0be" }, "ResponseBody": [] }, @@ -6792,7 +6935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ce935d12c7f1b7e84dfa388083033743", "x-ms-return-client-request-id": "true" }, @@ -6801,17 +6944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:54 GMT", + "Date": "Wed, 16 Jun 2021 00:03:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ab5c0b22-c966-428a-af08-d0d1447dc332", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "ab5c0b22-c966-428a-af08-d0d1447dc332", - "x-ms-routing-request-id": "WESTUS2:20210519T185754Z:ab5c0b22-c966-428a-af08-d0d1447dc332" + "x-ms-correlation-request-id": "5e459464-751c-4e4e-ab71-a7643fafb354", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "5e459464-751c-4e4e-ab71-a7643fafb354", + "x-ms-routing-request-id": "WESTUS2:20210616T000328Z:5e459464-751c-4e4e-ab71-a7643fafb354" }, "ResponseBody": [] }, @@ -6820,7 +6963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "db4f3da308bdab53506668bd92024469", "x-ms-return-client-request-id": "true" }, @@ -6829,17 +6972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:54 GMT", + "Date": "Wed, 16 Jun 2021 00:03:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "189f892e-980f-44a1-9895-9baa363fa818", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "189f892e-980f-44a1-9895-9baa363fa818", - "x-ms-routing-request-id": "WESTUS2:20210519T185755Z:189f892e-980f-44a1-9895-9baa363fa818" + "x-ms-correlation-request-id": "575b31b2-d8a8-4854-a6d8-e2e612966fe5", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "575b31b2-d8a8-4854-a6d8-e2e612966fe5", + "x-ms-routing-request-id": "WESTUS2:20210616T000329Z:575b31b2-d8a8-4854-a6d8-e2e612966fe5" }, "ResponseBody": [] }, @@ -6848,7 +6991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75fcc34bb92fe449d27e6d7b4667e297", "x-ms-return-client-request-id": "true" }, @@ -6857,17 +7000,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:55 GMT", + "Date": "Wed, 16 Jun 2021 00:03:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c6212d4b-40b4-471b-90d2-f4b0b9cc539e", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "c6212d4b-40b4-471b-90d2-f4b0b9cc539e", - "x-ms-routing-request-id": "WESTUS2:20210519T185756Z:c6212d4b-40b4-471b-90d2-f4b0b9cc539e" + "x-ms-correlation-request-id": "1d5802ad-a139-499b-872b-f56a73bc02c0", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "1d5802ad-a139-499b-872b-f56a73bc02c0", + "x-ms-routing-request-id": "WESTUS2:20210616T000330Z:1d5802ad-a139-499b-872b-f56a73bc02c0" }, "ResponseBody": [] }, @@ -6876,7 +7019,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8728157c06a0ade09e77e8b5e2a244b", "x-ms-return-client-request-id": "true" }, @@ -6885,17 +7028,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:57 GMT", + "Date": "Wed, 16 Jun 2021 00:03:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1fcceef7-960a-40d0-8ad3-ae0b5b4934bf", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "1fcceef7-960a-40d0-8ad3-ae0b5b4934bf", - "x-ms-routing-request-id": "WESTUS2:20210519T185757Z:1fcceef7-960a-40d0-8ad3-ae0b5b4934bf" + "x-ms-correlation-request-id": "5599bc4a-ee38-4d49-9062-1343d50b70c6", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "5599bc4a-ee38-4d49-9062-1343d50b70c6", + "x-ms-routing-request-id": "WESTUS2:20210616T000331Z:5599bc4a-ee38-4d49-9062-1343d50b70c6" }, "ResponseBody": [] }, @@ -6904,7 +7047,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c034ceb6c206e914f46a093e9bd765e8", "x-ms-return-client-request-id": "true" }, @@ -6913,17 +7056,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:58 GMT", + "Date": "Wed, 16 Jun 2021 00:03:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cbe4b1d5-86dc-41e4-80ac-a95694b637aa", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "cbe4b1d5-86dc-41e4-80ac-a95694b637aa", - "x-ms-routing-request-id": "WESTUS2:20210519T185758Z:cbe4b1d5-86dc-41e4-80ac-a95694b637aa" + "x-ms-correlation-request-id": "23bb504a-b61e-431f-b555-3cf4712ddf2c", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "23bb504a-b61e-431f-b555-3cf4712ddf2c", + "x-ms-routing-request-id": "WESTUS2:20210616T000332Z:23bb504a-b61e-431f-b555-3cf4712ddf2c" }, "ResponseBody": [] }, @@ -6932,7 +7075,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1166d0839b8f8afee4f26c473bbd86a7", "x-ms-return-client-request-id": "true" }, @@ -6941,17 +7084,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:57:59 GMT", + "Date": "Wed, 16 Jun 2021 00:03:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ca5174ba-86e5-4815-9f13-6ce3047c271a", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "ca5174ba-86e5-4815-9f13-6ce3047c271a", - "x-ms-routing-request-id": "WESTUS2:20210519T185759Z:ca5174ba-86e5-4815-9f13-6ce3047c271a" + "x-ms-correlation-request-id": "9d1f1832-ee6b-43ab-b4de-c45e8c5d1049", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "9d1f1832-ee6b-43ab-b4de-c45e8c5d1049", + "x-ms-routing-request-id": "WESTUS2:20210616T000333Z:9d1f1832-ee6b-43ab-b4de-c45e8c5d1049" }, "ResponseBody": [] }, @@ -6960,7 +7103,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77c52159223294916d88b400b7a06f31", "x-ms-return-client-request-id": "true" }, @@ -6969,17 +7112,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:00 GMT", + "Date": "Wed, 16 Jun 2021 00:03:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4cbe426b-7b97-4637-ac95-437207515942", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "4cbe426b-7b97-4637-ac95-437207515942", - "x-ms-routing-request-id": "WESTUS2:20210519T185800Z:4cbe426b-7b97-4637-ac95-437207515942" + "x-ms-correlation-request-id": "0330f29b-be6f-4f1e-9b55-faa7ead1bce4", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "0330f29b-be6f-4f1e-9b55-faa7ead1bce4", + "x-ms-routing-request-id": "WESTUS2:20210616T000334Z:0330f29b-be6f-4f1e-9b55-faa7ead1bce4" }, "ResponseBody": [] }, @@ -6988,7 +7131,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8d07958213c31abbd0a9db1356ccae36", "x-ms-return-client-request-id": "true" }, @@ -6997,17 +7140,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:01 GMT", + "Date": "Wed, 16 Jun 2021 00:03:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "471ac212-9df9-4163-b569-c6416d887042", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "471ac212-9df9-4163-b569-c6416d887042", - "x-ms-routing-request-id": "WESTUS2:20210519T185801Z:471ac212-9df9-4163-b569-c6416d887042" + "x-ms-correlation-request-id": "b7d135fa-af48-4344-b23a-2e24de800cbc", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "b7d135fa-af48-4344-b23a-2e24de800cbc", + "x-ms-routing-request-id": "WESTUS2:20210616T000335Z:b7d135fa-af48-4344-b23a-2e24de800cbc" }, "ResponseBody": [] }, @@ -7016,7 +7159,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "79e461e4ed1260b53fd2a306e7fed344", "x-ms-return-client-request-id": "true" }, @@ -7025,17 +7168,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:02 GMT", + "Date": "Wed, 16 Jun 2021 00:03:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1b847cb1-fa32-4e80-bd27-6a8294435340", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "1b847cb1-fa32-4e80-bd27-6a8294435340", - "x-ms-routing-request-id": "WESTUS2:20210519T185803Z:1b847cb1-fa32-4e80-bd27-6a8294435340" + "x-ms-correlation-request-id": "a41101c1-881b-41b8-9714-bd5122afb99c", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "a41101c1-881b-41b8-9714-bd5122afb99c", + "x-ms-routing-request-id": "WESTUS2:20210616T000336Z:a41101c1-881b-41b8-9714-bd5122afb99c" }, "ResponseBody": [] }, @@ -7044,7 +7187,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a6c53a83f8b646e466aaa789477d3ea1", "x-ms-return-client-request-id": "true" }, @@ -7053,17 +7196,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:03 GMT", + "Date": "Wed, 16 Jun 2021 00:03:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "460c3abf-3e14-496d-9f7e-eb40843e8bdf", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "460c3abf-3e14-496d-9f7e-eb40843e8bdf", - "x-ms-routing-request-id": "WESTUS2:20210519T185804Z:460c3abf-3e14-496d-9f7e-eb40843e8bdf" + "x-ms-correlation-request-id": "cb4495af-fbed-4d36-9d6d-e20679e3e8ea", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "cb4495af-fbed-4d36-9d6d-e20679e3e8ea", + "x-ms-routing-request-id": "WESTUS2:20210616T000337Z:cb4495af-fbed-4d36-9d6d-e20679e3e8ea" }, "ResponseBody": [] }, @@ -7072,7 +7215,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "561c7ddaf5bb941fdfa64ef170b433d2", "x-ms-return-client-request-id": "true" }, @@ -7081,17 +7224,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:04 GMT", + "Date": "Wed, 16 Jun 2021 00:03:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c", - "x-ms-routing-request-id": "WESTUS2:20210519T185805Z:b35b7dfe-ea3e-451d-ab2e-b7d72bb4eb2c" + "x-ms-correlation-request-id": "eae4da88-174f-47a3-9e11-6d394946306a", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "eae4da88-174f-47a3-9e11-6d394946306a", + "x-ms-routing-request-id": "WESTUS2:20210616T000338Z:eae4da88-174f-47a3-9e11-6d394946306a" }, "ResponseBody": [] }, @@ -7100,7 +7243,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b9096d60806eb807d9e1367462c19c1", "x-ms-return-client-request-id": "true" }, @@ -7109,17 +7252,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:05 GMT", + "Date": "Wed, 16 Jun 2021 00:03:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "44434561-3c14-413a-9968-213afdf57f3a", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "44434561-3c14-413a-9968-213afdf57f3a", - "x-ms-routing-request-id": "WESTUS2:20210519T185806Z:44434561-3c14-413a-9968-213afdf57f3a" + "x-ms-correlation-request-id": "37ac4e01-af53-4676-9740-a448ad5a8d77", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "37ac4e01-af53-4676-9740-a448ad5a8d77", + "x-ms-routing-request-id": "WESTUS2:20210616T000339Z:37ac4e01-af53-4676-9740-a448ad5a8d77" }, "ResponseBody": [] }, @@ -7128,7 +7271,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a2c01937ce28d881b30c610a9f2d5b1", "x-ms-return-client-request-id": "true" }, @@ -7137,17 +7280,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:06 GMT", + "Date": "Wed, 16 Jun 2021 00:03:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983", - "x-ms-routing-request-id": "WESTUS2:20210519T185807Z:93e6daf3-2a7d-4dc3-b43a-c7e49a4aa983" + "x-ms-correlation-request-id": "056e6192-eb5d-4554-a285-20735fe5a8fe", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "056e6192-eb5d-4554-a285-20735fe5a8fe", + "x-ms-routing-request-id": "WESTUS2:20210616T000340Z:056e6192-eb5d-4554-a285-20735fe5a8fe" }, "ResponseBody": [] }, @@ -7156,7 +7299,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1b2d57722edd29afd30d91ce2b74eb2", "x-ms-return-client-request-id": "true" }, @@ -7165,17 +7308,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:08 GMT", + "Date": "Wed, 16 Jun 2021 00:03:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fad08665-ea59-40c8-bd6b-319c841d9454", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "fad08665-ea59-40c8-bd6b-319c841d9454", - "x-ms-routing-request-id": "WESTUS2:20210519T185808Z:fad08665-ea59-40c8-bd6b-319c841d9454" + "x-ms-correlation-request-id": "dbc06c6f-2752-408d-8dde-47672ad68d8a", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "dbc06c6f-2752-408d-8dde-47672ad68d8a", + "x-ms-routing-request-id": "WESTUS2:20210616T000341Z:dbc06c6f-2752-408d-8dde-47672ad68d8a" }, "ResponseBody": [] }, @@ -7184,7 +7327,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e5e8d8dc98859ef0d0200d64170428a", "x-ms-return-client-request-id": "true" }, @@ -7193,17 +7336,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:09 GMT", + "Date": "Wed, 16 Jun 2021 00:03:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5d134f35-6ddc-40eb-be02-7f868f5e8609", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "5d134f35-6ddc-40eb-be02-7f868f5e8609", - "x-ms-routing-request-id": "WESTUS2:20210519T185809Z:5d134f35-6ddc-40eb-be02-7f868f5e8609" + "x-ms-correlation-request-id": "2df3940b-36d4-40fd-a30a-bade12451b23", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "2df3940b-36d4-40fd-a30a-bade12451b23", + "x-ms-routing-request-id": "WESTUS2:20210616T000342Z:2df3940b-36d4-40fd-a30a-bade12451b23" }, "ResponseBody": [] }, @@ -7212,7 +7355,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71f061c8677970d367596db2a36caa63", "x-ms-return-client-request-id": "true" }, @@ -7221,17 +7364,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:10 GMT", + "Date": "Wed, 16 Jun 2021 00:03:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "32be6763-0e00-4b38-84ca-7fb69f02328a", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "32be6763-0e00-4b38-84ca-7fb69f02328a", - "x-ms-routing-request-id": "WESTUS2:20210519T185810Z:32be6763-0e00-4b38-84ca-7fb69f02328a" + "x-ms-correlation-request-id": "2869ccf2-54f5-4dc0-b71b-7f55bb609a0a", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "2869ccf2-54f5-4dc0-b71b-7f55bb609a0a", + "x-ms-routing-request-id": "WESTUS2:20210616T000344Z:2869ccf2-54f5-4dc0-b71b-7f55bb609a0a" }, "ResponseBody": [] }, @@ -7240,7 +7383,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1c8214e26794ae28e558a3eb22c4918c", "x-ms-return-client-request-id": "true" }, @@ -7249,17 +7392,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:11 GMT", + "Date": "Wed, 16 Jun 2021 00:03:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c18684c8-2207-4e16-b7e1-ba2096d9001f", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "c18684c8-2207-4e16-b7e1-ba2096d9001f", - "x-ms-routing-request-id": "WESTUS2:20210519T185811Z:c18684c8-2207-4e16-b7e1-ba2096d9001f" + "x-ms-correlation-request-id": "759b4f34-91cc-4893-8fbe-fe2099ef2046", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "759b4f34-91cc-4893-8fbe-fe2099ef2046", + "x-ms-routing-request-id": "WESTUS2:20210616T000345Z:759b4f34-91cc-4893-8fbe-fe2099ef2046" }, "ResponseBody": [] }, @@ -7268,7 +7411,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80534eedddc72538b9ed072f5b3db6a1", "x-ms-return-client-request-id": "true" }, @@ -7277,17 +7420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:12 GMT", + "Date": "Wed, 16 Jun 2021 00:03:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5abe0f93-e056-4c3a-84a2-dc3e0ac8164e", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "5abe0f93-e056-4c3a-84a2-dc3e0ac8164e", - "x-ms-routing-request-id": "WESTUS2:20210519T185812Z:5abe0f93-e056-4c3a-84a2-dc3e0ac8164e" + "x-ms-correlation-request-id": "e97f50ea-9b70-4cdf-b951-18c262e2d22f", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "e97f50ea-9b70-4cdf-b951-18c262e2d22f", + "x-ms-routing-request-id": "WESTUS2:20210616T000346Z:e97f50ea-9b70-4cdf-b951-18c262e2d22f" }, "ResponseBody": [] }, @@ -7296,7 +7439,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2df49c5725ed61f639418b21c3e84ea2", "x-ms-return-client-request-id": "true" }, @@ -7305,17 +7448,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:13 GMT", + "Date": "Wed, 16 Jun 2021 00:03:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6", - "x-ms-routing-request-id": "WESTUS2:20210519T185813Z:6d6fd3f5-3e46-4ec5-82aa-b9f2c4a810b6" + "x-ms-correlation-request-id": "51a1f933-17ba-437c-bd5a-938178424364", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "51a1f933-17ba-437c-bd5a-938178424364", + "x-ms-routing-request-id": "WESTUS2:20210616T000347Z:51a1f933-17ba-437c-bd5a-938178424364" }, "ResponseBody": [] }, @@ -7324,7 +7467,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "54c4e0c82a18049cdb5c63a65ff852a8", "x-ms-return-client-request-id": "true" }, @@ -7333,17 +7476,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:14 GMT", + "Date": "Wed, 16 Jun 2021 00:03:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b52fa4ad-7462-49a2-a0d1-108387797ab6", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "b52fa4ad-7462-49a2-a0d1-108387797ab6", - "x-ms-routing-request-id": "WESTUS2:20210519T185814Z:b52fa4ad-7462-49a2-a0d1-108387797ab6" + "x-ms-correlation-request-id": "b78a0d34-931c-4c5a-9014-32b5003928b0", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "b78a0d34-931c-4c5a-9014-32b5003928b0", + "x-ms-routing-request-id": "WESTUS2:20210616T000348Z:b78a0d34-931c-4c5a-9014-32b5003928b0" }, "ResponseBody": [] }, @@ -7352,7 +7495,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "859302a263d0c89f58f24785511761d0", "x-ms-return-client-request-id": "true" }, @@ -7361,17 +7504,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:14 GMT", + "Date": "Wed, 16 Jun 2021 00:03:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cb52bccb-a5d3-40b7-84eb-38b9da8c578f", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "cb52bccb-a5d3-40b7-84eb-38b9da8c578f", - "x-ms-routing-request-id": "WESTUS2:20210519T185815Z:cb52bccb-a5d3-40b7-84eb-38b9da8c578f" + "x-ms-correlation-request-id": "42d37737-7fc9-44a1-b96c-9a1e76c66b4f", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "42d37737-7fc9-44a1-b96c-9a1e76c66b4f", + "x-ms-routing-request-id": "WESTUS2:20210616T000349Z:42d37737-7fc9-44a1-b96c-9a1e76c66b4f" }, "ResponseBody": [] }, @@ -7380,7 +7523,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b66649f61792d8900ef5190c24f0140", "x-ms-return-client-request-id": "true" }, @@ -7389,17 +7532,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:15 GMT", + "Date": "Wed, 16 Jun 2021 00:03:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "776ce5ec-34ab-4642-9418-25e6f6f20387", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "776ce5ec-34ab-4642-9418-25e6f6f20387", - "x-ms-routing-request-id": "WESTUS2:20210519T185816Z:776ce5ec-34ab-4642-9418-25e6f6f20387" + "x-ms-correlation-request-id": "568546de-8d2d-44c1-9367-aebde2b48ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "568546de-8d2d-44c1-9367-aebde2b48ca8", + "x-ms-routing-request-id": "WESTUS2:20210616T000350Z:568546de-8d2d-44c1-9367-aebde2b48ca8" }, "ResponseBody": [] }, @@ -7408,7 +7551,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c17fe3eec85464d241fcfc25e216b2c4", "x-ms-return-client-request-id": "true" }, @@ -7417,17 +7560,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:17 GMT", + "Date": "Wed, 16 Jun 2021 00:03:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7a622e5c-eac5-4c99-bd3c-711afc093bd4", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "7a622e5c-eac5-4c99-bd3c-711afc093bd4", - "x-ms-routing-request-id": "WESTUS2:20210519T185817Z:7a622e5c-eac5-4c99-bd3c-711afc093bd4" + "x-ms-correlation-request-id": "1bd9200e-34e3-45d7-aa67-537eaecd787d", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "1bd9200e-34e3-45d7-aa67-537eaecd787d", + "x-ms-routing-request-id": "WESTUS2:20210616T000351Z:1bd9200e-34e3-45d7-aa67-537eaecd787d" }, "ResponseBody": [] }, @@ -7436,7 +7579,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fb0792fad792402f786685e0120e0508", "x-ms-return-client-request-id": "true" }, @@ -7445,17 +7588,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:18 GMT", + "Date": "Wed, 16 Jun 2021 00:03:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b757ac40-a89f-48f0-8206-c1d7a0cffd54", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "b757ac40-a89f-48f0-8206-c1d7a0cffd54", - "x-ms-routing-request-id": "WESTUS2:20210519T185818Z:b757ac40-a89f-48f0-8206-c1d7a0cffd54" + "x-ms-correlation-request-id": "48e0b312-f4af-43e6-83e6-c1536ab37f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "48e0b312-f4af-43e6-83e6-c1536ab37f2b", + "x-ms-routing-request-id": "WESTUS2:20210616T000352Z:48e0b312-f4af-43e6-83e6-c1536ab37f2b" }, "ResponseBody": [] }, @@ -7464,7 +7607,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6e9606f0a098d67c92023a7d65634ae9", "x-ms-return-client-request-id": "true" }, @@ -7473,17 +7616,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:19 GMT", + "Date": "Wed, 16 Jun 2021 00:03:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "054723a9-e009-40c9-9961-d9001bd2128a", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "054723a9-e009-40c9-9961-d9001bd2128a", - "x-ms-routing-request-id": "WESTUS2:20210519T185819Z:054723a9-e009-40c9-9961-d9001bd2128a" + "x-ms-correlation-request-id": "7c6296f9-736d-40fe-a31c-7e64649cf01b", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "7c6296f9-736d-40fe-a31c-7e64649cf01b", + "x-ms-routing-request-id": "WESTUS2:20210616T000353Z:7c6296f9-736d-40fe-a31c-7e64649cf01b" }, "ResponseBody": [] }, @@ -7492,7 +7635,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "30968c3c064817aeb43e48ee43f15132", "x-ms-return-client-request-id": "true" }, @@ -7501,17 +7644,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:20 GMT", + "Date": "Wed, 16 Jun 2021 00:03:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1acda8a-db60-4ffd-aa75-e9b741c30ee1", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "c1acda8a-db60-4ffd-aa75-e9b741c30ee1", - "x-ms-routing-request-id": "WESTUS2:20210519T185820Z:c1acda8a-db60-4ffd-aa75-e9b741c30ee1" + "x-ms-correlation-request-id": "082f2a25-f3b0-44ac-a641-ab1d4cb81737", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "082f2a25-f3b0-44ac-a641-ab1d4cb81737", + "x-ms-routing-request-id": "WESTUS2:20210616T000354Z:082f2a25-f3b0-44ac-a641-ab1d4cb81737" }, "ResponseBody": [] }, @@ -7520,7 +7663,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dc34f4f6447f5a2b163068909cb2db14", "x-ms-return-client-request-id": "true" }, @@ -7529,17 +7672,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:21 GMT", + "Date": "Wed, 16 Jun 2021 00:03:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1", - "x-ms-routing-request-id": "WESTUS2:20210519T185821Z:d82b1f83-dbff-4f3f-b8a9-b6d67ca1d2e1" + "x-ms-correlation-request-id": "40dd431a-8720-47cb-9f38-c9df27182b28", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "40dd431a-8720-47cb-9f38-c9df27182b28", + "x-ms-routing-request-id": "WESTUS2:20210616T000355Z:40dd431a-8720-47cb-9f38-c9df27182b28" }, "ResponseBody": [] }, @@ -7548,7 +7691,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85a39b1bd578eabf577fba59578d93a1", "x-ms-return-client-request-id": "true" }, @@ -7557,17 +7700,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:22 GMT", + "Date": "Wed, 16 Jun 2021 00:03:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1e9550c9-dad5-4457-b84d-3e72d5fa6211", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "1e9550c9-dad5-4457-b84d-3e72d5fa6211", - "x-ms-routing-request-id": "WESTUS2:20210519T185822Z:1e9550c9-dad5-4457-b84d-3e72d5fa6211" + "x-ms-correlation-request-id": "f30e79e0-680c-434f-ab5f-fe73947f3b25", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "f30e79e0-680c-434f-ab5f-fe73947f3b25", + "x-ms-routing-request-id": "WESTUS2:20210616T000356Z:f30e79e0-680c-434f-ab5f-fe73947f3b25" }, "ResponseBody": [] }, @@ -7576,7 +7719,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "708607b06d2ef869613b1a189e1e7b02", "x-ms-return-client-request-id": "true" }, @@ -7585,17 +7728,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:23 GMT", + "Date": "Wed, 16 Jun 2021 00:03:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d5f18949-328f-4893-893b-ceace009c115", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "d5f18949-328f-4893-893b-ceace009c115", - "x-ms-routing-request-id": "WESTUS2:20210519T185823Z:d5f18949-328f-4893-893b-ceace009c115" + "x-ms-correlation-request-id": "84dfb401-de41-48b2-8280-249cf791bd21", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "84dfb401-de41-48b2-8280-249cf791bd21", + "x-ms-routing-request-id": "WESTUS2:20210616T000357Z:84dfb401-de41-48b2-8280-249cf791bd21" }, "ResponseBody": [] }, @@ -7604,7 +7747,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a8d23363cc4d21ba344a840089d20388", "x-ms-return-client-request-id": "true" }, @@ -7613,17 +7756,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:24 GMT", + "Date": "Wed, 16 Jun 2021 00:03:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8", - "x-ms-routing-request-id": "WESTUS2:20210519T185824Z:4ebae793-d87d-41a0-bdc7-aa5c3d0c00f8" + "x-ms-correlation-request-id": "33186667-06f1-4911-abae-bcd1b50c239a", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "33186667-06f1-4911-abae-bcd1b50c239a", + "x-ms-routing-request-id": "WESTUS2:20210616T000358Z:33186667-06f1-4911-abae-bcd1b50c239a" }, "ResponseBody": [] }, @@ -7632,7 +7775,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95dfc69c6a2baee631aa243cbaa74b39", "x-ms-return-client-request-id": "true" }, @@ -7641,17 +7784,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:25 GMT", + "Date": "Wed, 16 Jun 2021 00:03:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "553cecc4-3531-41c7-8f7d-ead604cc4a35", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "553cecc4-3531-41c7-8f7d-ead604cc4a35", - "x-ms-routing-request-id": "WESTUS2:20210519T185825Z:553cecc4-3531-41c7-8f7d-ead604cc4a35" + "x-ms-correlation-request-id": "f5139f13-f6b0-4612-9ee6-c398fccc47a8", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "f5139f13-f6b0-4612-9ee6-c398fccc47a8", + "x-ms-routing-request-id": "WESTUS2:20210616T000359Z:f5139f13-f6b0-4612-9ee6-c398fccc47a8" }, "ResponseBody": [] }, @@ -7660,7 +7803,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23f6b804ebbae3534c643ce4e9696f8e", "x-ms-return-client-request-id": "true" }, @@ -7669,17 +7812,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:26 GMT", + "Date": "Wed, 16 Jun 2021 00:04:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7d6ba865-88c3-434b-9f82-4e05456b6598", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "7d6ba865-88c3-434b-9f82-4e05456b6598", - "x-ms-routing-request-id": "WESTUS2:20210519T185826Z:7d6ba865-88c3-434b-9f82-4e05456b6598" + "x-ms-correlation-request-id": "7ae8531e-0031-4db9-ac36-3373a758e210", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "7ae8531e-0031-4db9-ac36-3373a758e210", + "x-ms-routing-request-id": "WESTUS2:20210616T000400Z:7ae8531e-0031-4db9-ac36-3373a758e210" }, "ResponseBody": [] }, @@ -7688,7 +7831,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d77b9138e63ef8d64d2476a2a77e668d", "x-ms-return-client-request-id": "true" }, @@ -7697,17 +7840,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:27 GMT", + "Date": "Wed, 16 Jun 2021 00:04:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0933ee69-45be-418d-803b-cd2f05a90f91", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "0933ee69-45be-418d-803b-cd2f05a90f91", - "x-ms-routing-request-id": "WESTUS2:20210519T185827Z:0933ee69-45be-418d-803b-cd2f05a90f91" + "x-ms-correlation-request-id": "fba24979-55e4-47be-84d2-2550624fb90c", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "fba24979-55e4-47be-84d2-2550624fb90c", + "x-ms-routing-request-id": "WESTUS2:20210616T000401Z:fba24979-55e4-47be-84d2-2550624fb90c" }, "ResponseBody": [] }, @@ -7716,7 +7859,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1fc4bfedfdbb1cd73fb48c62e02c5c8", "x-ms-return-client-request-id": "true" }, @@ -7725,17 +7868,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:28 GMT", + "Date": "Wed, 16 Jun 2021 00:04:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4c8375b9-52ed-42da-8e15-8558f0f08e03", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "4c8375b9-52ed-42da-8e15-8558f0f08e03", - "x-ms-routing-request-id": "WESTUS2:20210519T185828Z:4c8375b9-52ed-42da-8e15-8558f0f08e03" + "x-ms-correlation-request-id": "31b5ef74-c593-4584-869a-c3aba84dcb1a", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "31b5ef74-c593-4584-869a-c3aba84dcb1a", + "x-ms-routing-request-id": "WESTUS2:20210616T000402Z:31b5ef74-c593-4584-869a-c3aba84dcb1a" }, "ResponseBody": [] }, @@ -7744,7 +7887,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2903953b742b1efae1fdd59674b03cce", "x-ms-return-client-request-id": "true" }, @@ -7753,17 +7896,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:29 GMT", + "Date": "Wed, 16 Jun 2021 00:04:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b", - "x-ms-routing-request-id": "WESTUS2:20210519T185829Z:33bd2f1f-4a5f-4505-8f39-2ef04cfbef3b" + "x-ms-correlation-request-id": "fab8f21b-621d-40b2-ad63-9236f2f64b02", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "fab8f21b-621d-40b2-ad63-9236f2f64b02", + "x-ms-routing-request-id": "WESTUS2:20210616T000403Z:fab8f21b-621d-40b2-ad63-9236f2f64b02" }, "ResponseBody": [] }, @@ -7772,7 +7915,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9de5affd9e6d58b3c3ca64429d0fca4b", "x-ms-return-client-request-id": "true" }, @@ -7781,17 +7924,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:30 GMT", + "Date": "Wed, 16 Jun 2021 00:04:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0c400e73-ba15-4fd9-969a-d51fe4e45d6c", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "0c400e73-ba15-4fd9-969a-d51fe4e45d6c", - "x-ms-routing-request-id": "WESTUS2:20210519T185830Z:0c400e73-ba15-4fd9-969a-d51fe4e45d6c" + "x-ms-correlation-request-id": "e53799dd-5b52-43a4-92c4-fde30e7d8135", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "e53799dd-5b52-43a4-92c4-fde30e7d8135", + "x-ms-routing-request-id": "WESTUS2:20210616T000404Z:e53799dd-5b52-43a4-92c4-fde30e7d8135" }, "ResponseBody": [] }, @@ -7800,7 +7943,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1167ae5f3d7a8a6150deefdd0a373cc2", "x-ms-return-client-request-id": "true" }, @@ -7809,17 +7952,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:31 GMT", + "Date": "Wed, 16 Jun 2021 00:04:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e9d75272-0fb0-446d-9755-d736bb791d9c", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "e9d75272-0fb0-446d-9755-d736bb791d9c", - "x-ms-routing-request-id": "WESTUS2:20210519T185831Z:e9d75272-0fb0-446d-9755-d736bb791d9c" + "x-ms-correlation-request-id": "7afc6808-32b2-4c63-815d-86c54887a4de", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "7afc6808-32b2-4c63-815d-86c54887a4de", + "x-ms-routing-request-id": "WESTUS2:20210616T000405Z:7afc6808-32b2-4c63-815d-86c54887a4de" }, "ResponseBody": [] }, @@ -7828,7 +7971,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ec879bf271d9d5ae2ab656110b880d2", "x-ms-return-client-request-id": "true" }, @@ -7837,17 +7980,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:32 GMT", + "Date": "Wed, 16 Jun 2021 00:04:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fdc9bcde-7f0c-402b-a2ce-d33fe1f29808", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "fdc9bcde-7f0c-402b-a2ce-d33fe1f29808", - "x-ms-routing-request-id": "WESTUS2:20210519T185833Z:fdc9bcde-7f0c-402b-a2ce-d33fe1f29808" + "x-ms-correlation-request-id": "c0e1b1f8-bfdc-4869-966d-b28716b3e1a2", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "c0e1b1f8-bfdc-4869-966d-b28716b3e1a2", + "x-ms-routing-request-id": "WESTUS2:20210616T000406Z:c0e1b1f8-bfdc-4869-966d-b28716b3e1a2" }, "ResponseBody": [] }, @@ -7856,7 +7999,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c63689332a49c0544d5a4d8eaed54e8c", "x-ms-return-client-request-id": "true" }, @@ -7865,17 +8008,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:33 GMT", + "Date": "Wed, 16 Jun 2021 00:04:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "15ee7070-17e0-4de3-aeb6-863cf4b1190a", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "15ee7070-17e0-4de3-aeb6-863cf4b1190a", - "x-ms-routing-request-id": "WESTUS2:20210519T185834Z:15ee7070-17e0-4de3-aeb6-863cf4b1190a" + "x-ms-correlation-request-id": "f7e1d4ee-d339-46e2-bec0-e1180add96ce", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "f7e1d4ee-d339-46e2-bec0-e1180add96ce", + "x-ms-routing-request-id": "WESTUS2:20210616T000407Z:f7e1d4ee-d339-46e2-bec0-e1180add96ce" }, "ResponseBody": [] }, @@ -7884,7 +8027,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2482a28d4b46382e53ca2fcfd8007a98", "x-ms-return-client-request-id": "true" }, @@ -7893,17 +8036,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:34 GMT", + "Date": "Wed, 16 Jun 2021 00:04:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d8ad74dc-951f-44fb-9a25-3499ead055a7", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "d8ad74dc-951f-44fb-9a25-3499ead055a7", - "x-ms-routing-request-id": "WESTUS2:20210519T185835Z:d8ad74dc-951f-44fb-9a25-3499ead055a7" + "x-ms-correlation-request-id": "719b30b8-39b4-49b3-b63e-fcdcf3d94383", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "719b30b8-39b4-49b3-b63e-fcdcf3d94383", + "x-ms-routing-request-id": "WESTUS2:20210616T000408Z:719b30b8-39b4-49b3-b63e-fcdcf3d94383" }, "ResponseBody": [] }, @@ -7912,7 +8055,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80aa1d5e76009578250831c2daccee0d", "x-ms-return-client-request-id": "true" }, @@ -7921,17 +8064,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:35 GMT", + "Date": "Wed, 16 Jun 2021 00:04:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2af8784a-ee2d-434c-8d07-859660c7fc22", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "2af8784a-ee2d-434c-8d07-859660c7fc22", - "x-ms-routing-request-id": "WESTUS2:20210519T185836Z:2af8784a-ee2d-434c-8d07-859660c7fc22" + "x-ms-correlation-request-id": "32580139-d895-4891-bf9f-f3140933526c", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "32580139-d895-4891-bf9f-f3140933526c", + "x-ms-routing-request-id": "WESTUS2:20210616T000409Z:32580139-d895-4891-bf9f-f3140933526c" }, "ResponseBody": [] }, @@ -7940,7 +8083,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed3d95c5b35e78b5bfe727ffb84e74d", "x-ms-return-client-request-id": "true" }, @@ -7949,17 +8092,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:36 GMT", + "Date": "Wed, 16 Jun 2021 00:04:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a4f9b287-f823-4eb6-9498-65a3f5cf11a7", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "a4f9b287-f823-4eb6-9498-65a3f5cf11a7", - "x-ms-routing-request-id": "WESTUS2:20210519T185837Z:a4f9b287-f823-4eb6-9498-65a3f5cf11a7" + "x-ms-correlation-request-id": "28608083-fac4-4c74-b7d2-eb9bf7e7b70e", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "28608083-fac4-4c74-b7d2-eb9bf7e7b70e", + "x-ms-routing-request-id": "WESTUS2:20210616T000410Z:28608083-fac4-4c74-b7d2-eb9bf7e7b70e" }, "ResponseBody": [] }, @@ -7968,7 +8111,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9130b4e0ce2a178b29edfe3d1a6c5d87", "x-ms-return-client-request-id": "true" }, @@ -7977,17 +8120,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:37 GMT", + "Date": "Wed, 16 Jun 2021 00:04:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a4648e34-8b71-493a-bd3f-91657b585359", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "a4648e34-8b71-493a-bd3f-91657b585359", - "x-ms-routing-request-id": "WESTUS2:20210519T185838Z:a4648e34-8b71-493a-bd3f-91657b585359" + "x-ms-correlation-request-id": "daa27e5a-d4cd-421d-a425-f0b5cf16528d", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "daa27e5a-d4cd-421d-a425-f0b5cf16528d", + "x-ms-routing-request-id": "WESTUS2:20210616T000411Z:daa27e5a-d4cd-421d-a425-f0b5cf16528d" }, "ResponseBody": [] }, @@ -7996,7 +8139,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff7221db0c2c026392c2240203f89aa0", "x-ms-return-client-request-id": "true" }, @@ -8005,17 +8148,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:38 GMT", + "Date": "Wed, 16 Jun 2021 00:04:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557", - "x-ms-routing-request-id": "WESTUS2:20210519T185839Z:9cc9c1fb-a3aa-4d18-b84d-d970a9ef0557" + "x-ms-correlation-request-id": "00910565-43ea-44fa-9da7-06d8d770858f", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "00910565-43ea-44fa-9da7-06d8d770858f", + "x-ms-routing-request-id": "WESTUS2:20210616T000413Z:00910565-43ea-44fa-9da7-06d8d770858f" }, "ResponseBody": [] }, @@ -8024,7 +8167,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "25e1e3215d9c8ee24dbc44475c4dcdee", "x-ms-return-client-request-id": "true" }, @@ -8033,17 +8176,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:39 GMT", + "Date": "Wed, 16 Jun 2021 00:04:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dda0d7a3-ee0b-4003-9563-57952b7e2cf6", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "dda0d7a3-ee0b-4003-9563-57952b7e2cf6", - "x-ms-routing-request-id": "WESTUS2:20210519T185840Z:dda0d7a3-ee0b-4003-9563-57952b7e2cf6" + "x-ms-correlation-request-id": "90d08237-c338-4e11-8ba1-81ab5dc07e59", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "90d08237-c338-4e11-8ba1-81ab5dc07e59", + "x-ms-routing-request-id": "WESTUS2:20210616T000414Z:90d08237-c338-4e11-8ba1-81ab5dc07e59" }, "ResponseBody": [] }, @@ -8052,7 +8195,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9a4eba0e812d421502dff68a9891330", "x-ms-return-client-request-id": "true" }, @@ -8061,17 +8204,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:40 GMT", + "Date": "Wed, 16 Jun 2021 00:04:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4", - "x-ms-routing-request-id": "WESTUS2:20210519T185841Z:b4fa147a-d6c8-43dd-aee7-b8182fe6c4b4" + "x-ms-correlation-request-id": "13b0a16d-55ba-42c5-b5ed-6343c9ac5b53", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "13b0a16d-55ba-42c5-b5ed-6343c9ac5b53", + "x-ms-routing-request-id": "WESTUS2:20210616T000415Z:13b0a16d-55ba-42c5-b5ed-6343c9ac5b53" }, "ResponseBody": [] }, @@ -8080,7 +8223,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "371c5e52388a7deb3fe4b16fc71ba544", "x-ms-return-client-request-id": "true" }, @@ -8089,17 +8232,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:41 GMT", + "Date": "Wed, 16 Jun 2021 00:04:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "4883980c-134e-4977-8cd4-a71a2ad71306", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "4883980c-134e-4977-8cd4-a71a2ad71306", - "x-ms-routing-request-id": "WESTUS2:20210519T185842Z:4883980c-134e-4977-8cd4-a71a2ad71306" + "x-ms-correlation-request-id": "7cac3de3-b36c-4147-8113-961eabe8a9ab", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "7cac3de3-b36c-4147-8113-961eabe8a9ab", + "x-ms-routing-request-id": "WESTUS2:20210616T000416Z:7cac3de3-b36c-4147-8113-961eabe8a9ab" }, "ResponseBody": [] }, @@ -8108,7 +8251,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "186136f5c154398ec10cd46e5e7ae4c4", "x-ms-return-client-request-id": "true" }, @@ -8117,17 +8260,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:42 GMT", + "Date": "Wed, 16 Jun 2021 00:04:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "feaf7a49-eef9-4125-b5d1-2c5e16f103db", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "feaf7a49-eef9-4125-b5d1-2c5e16f103db", - "x-ms-routing-request-id": "WESTUS2:20210519T185843Z:feaf7a49-eef9-4125-b5d1-2c5e16f103db" + "x-ms-correlation-request-id": "c4138842-c6b3-48e2-851c-b3557c480517", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "c4138842-c6b3-48e2-851c-b3557c480517", + "x-ms-routing-request-id": "WESTUS2:20210616T000417Z:c4138842-c6b3-48e2-851c-b3557c480517" }, "ResponseBody": [] }, @@ -8136,7 +8279,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fef413a9953168630026992d36b10c35", "x-ms-return-client-request-id": "true" }, @@ -8145,17 +8288,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:43 GMT", + "Date": "Wed, 16 Jun 2021 00:04:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "566e7fb8-871b-4162-8aad-cfb570c36d50", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "566e7fb8-871b-4162-8aad-cfb570c36d50", - "x-ms-routing-request-id": "WESTUS2:20210519T185844Z:566e7fb8-871b-4162-8aad-cfb570c36d50" + "x-ms-correlation-request-id": "1fcc2db2-78a4-4e53-913d-a791e2315fa0", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "1fcc2db2-78a4-4e53-913d-a791e2315fa0", + "x-ms-routing-request-id": "WESTUS2:20210616T000418Z:1fcc2db2-78a4-4e53-913d-a791e2315fa0" }, "ResponseBody": [] }, @@ -8164,7 +8307,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7372ba87fb2791dccfe2757e637c1fc5", "x-ms-return-client-request-id": "true" }, @@ -8173,17 +8316,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:44 GMT", + "Date": "Wed, 16 Jun 2021 00:04:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "788a54f7-20a6-4be2-82dc-3ee7b14b88d8", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "788a54f7-20a6-4be2-82dc-3ee7b14b88d8", - "x-ms-routing-request-id": "WESTUS2:20210519T185845Z:788a54f7-20a6-4be2-82dc-3ee7b14b88d8" + "x-ms-correlation-request-id": "643ca4e0-d1af-4d12-be05-d99302914835", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "643ca4e0-d1af-4d12-be05-d99302914835", + "x-ms-routing-request-id": "WESTUS2:20210616T000419Z:643ca4e0-d1af-4d12-be05-d99302914835" }, "ResponseBody": [] }, @@ -8192,7 +8335,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b4c6ecffa7265f13d2f8172d27600210", "x-ms-return-client-request-id": "true" }, @@ -8201,17 +8344,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:45 GMT", + "Date": "Wed, 16 Jun 2021 00:04:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bd1f50d3-1f74-4d08-a861-dd151cd1d27c", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-request-id": "bd1f50d3-1f74-4d08-a861-dd151cd1d27c", - "x-ms-routing-request-id": "WESTUS2:20210519T185846Z:bd1f50d3-1f74-4d08-a861-dd151cd1d27c" + "x-ms-correlation-request-id": "4a877ef6-fbe5-44c7-a6f7-cfa5f029d446", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "4a877ef6-fbe5-44c7-a6f7-cfa5f029d446", + "x-ms-routing-request-id": "WESTUS2:20210616T000420Z:4a877ef6-fbe5-44c7-a6f7-cfa5f029d446" }, "ResponseBody": [] }, @@ -8220,7 +8363,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3e69fff7107ad9d36632e4e20e50583", "x-ms-return-client-request-id": "true" }, @@ -8229,17 +8372,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:46 GMT", + "Date": "Wed, 16 Jun 2021 00:04:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d3cd74b8-0639-41c3-a797-9b105e4d1b84", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "d3cd74b8-0639-41c3-a797-9b105e4d1b84", - "x-ms-routing-request-id": "WESTUS2:20210519T185847Z:d3cd74b8-0639-41c3-a797-9b105e4d1b84" + "x-ms-correlation-request-id": "bf9f5108-7379-4f1d-9d0d-4740c5df7e58", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "bf9f5108-7379-4f1d-9d0d-4740c5df7e58", + "x-ms-routing-request-id": "WESTUS2:20210616T000421Z:bf9f5108-7379-4f1d-9d0d-4740c5df7e58" }, "ResponseBody": [] }, @@ -8248,7 +8391,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "492dd40758eae00ea713a12ee3ae696f", "x-ms-return-client-request-id": "true" }, @@ -8257,17 +8400,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:47 GMT", + "Date": "Wed, 16 Jun 2021 00:04:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f1f61ad8-71e7-4281-bb41-19630de62f55", - "x-ms-ratelimit-remaining-subscription-reads": "11744", - "x-ms-request-id": "f1f61ad8-71e7-4281-bb41-19630de62f55", - "x-ms-routing-request-id": "WESTUS2:20210519T185848Z:f1f61ad8-71e7-4281-bb41-19630de62f55" + "x-ms-correlation-request-id": "69f92e0e-f55f-4b9d-9385-3f4102b7771d", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "69f92e0e-f55f-4b9d-9385-3f4102b7771d", + "x-ms-routing-request-id": "WESTUS2:20210616T000422Z:69f92e0e-f55f-4b9d-9385-3f4102b7771d" }, "ResponseBody": [] }, @@ -8276,7 +8419,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c37e64e07b968ebe4f187dc378c53fec", "x-ms-return-client-request-id": "true" }, @@ -8285,17 +8428,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:48 GMT", + "Date": "Wed, 16 Jun 2021 00:04:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f967fdc0-81db-4e39-bf32-0cdfa7cce67b", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-request-id": "f967fdc0-81db-4e39-bf32-0cdfa7cce67b", - "x-ms-routing-request-id": "WESTUS2:20210519T185849Z:f967fdc0-81db-4e39-bf32-0cdfa7cce67b" + "x-ms-correlation-request-id": "a89e96e8-9c23-4a94-9cea-bc80262a9f2a", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "a89e96e8-9c23-4a94-9cea-bc80262a9f2a", + "x-ms-routing-request-id": "WESTUS2:20210616T000423Z:a89e96e8-9c23-4a94-9cea-bc80262a9f2a" }, "ResponseBody": [] }, @@ -8304,7 +8447,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "532694f3b833a7259105fcf3d06eca88", "x-ms-return-client-request-id": "true" }, @@ -8313,17 +8456,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:49 GMT", + "Date": "Wed, 16 Jun 2021 00:04:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fad09b4b-cd46-4bb0-a049-e0c2d664bf53", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-request-id": "fad09b4b-cd46-4bb0-a049-e0c2d664bf53", - "x-ms-routing-request-id": "WESTUS2:20210519T185850Z:fad09b4b-cd46-4bb0-a049-e0c2d664bf53" + "x-ms-correlation-request-id": "ec989af6-5e13-408d-ac26-3a5d15fcdf7a", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "ec989af6-5e13-408d-ac26-3a5d15fcdf7a", + "x-ms-routing-request-id": "WESTUS2:20210616T000424Z:ec989af6-5e13-408d-ac26-3a5d15fcdf7a" }, "ResponseBody": [] }, @@ -8332,7 +8475,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bb6ebff941678bed169ffad1db4a67e2", "x-ms-return-client-request-id": "true" }, @@ -8341,17 +8484,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:50 GMT", + "Date": "Wed, 16 Jun 2021 00:04:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "78c75ac1-959e-4c53-bea2-29dd20e7f292", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-request-id": "78c75ac1-959e-4c53-bea2-29dd20e7f292", - "x-ms-routing-request-id": "WESTUS2:20210519T185851Z:78c75ac1-959e-4c53-bea2-29dd20e7f292" + "x-ms-correlation-request-id": "1f847775-36ba-41ef-baeb-cb3021871b9e", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "1f847775-36ba-41ef-baeb-cb3021871b9e", + "x-ms-routing-request-id": "WESTUS2:20210616T000425Z:1f847775-36ba-41ef-baeb-cb3021871b9e" }, "ResponseBody": [] }, @@ -8360,7 +8503,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4f3ab4d41688273b3fd632907ecabee1", "x-ms-return-client-request-id": "true" }, @@ -8369,17 +8512,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:51 GMT", + "Date": "Wed, 16 Jun 2021 00:04:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6287090d-a05d-474c-afa9-09ac0dcffb15", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-request-id": "6287090d-a05d-474c-afa9-09ac0dcffb15", - "x-ms-routing-request-id": "WESTUS2:20210519T185852Z:6287090d-a05d-474c-afa9-09ac0dcffb15" + "x-ms-correlation-request-id": "c3554546-b957-496a-9a39-92056b36b8f7", + "x-ms-ratelimit-remaining-subscription-reads": "11533", + "x-ms-request-id": "c3554546-b957-496a-9a39-92056b36b8f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000426Z:c3554546-b957-496a-9a39-92056b36b8f7" }, "ResponseBody": [] }, @@ -8388,7 +8531,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b9caf54e8357b285a69a3d93be54cc46", "x-ms-return-client-request-id": "true" }, @@ -8397,17 +8540,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:52 GMT", + "Date": "Wed, 16 Jun 2021 00:04:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "62915e66-b9bf-48fb-8441-d36a02a598ef", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-request-id": "62915e66-b9bf-48fb-8441-d36a02a598ef", - "x-ms-routing-request-id": "WESTUS2:20210519T185853Z:62915e66-b9bf-48fb-8441-d36a02a598ef" + "x-ms-correlation-request-id": "21f2f0d9-b375-4eb7-bd00-26eb2bdc42f8", + "x-ms-ratelimit-remaining-subscription-reads": "11531", + "x-ms-request-id": "21f2f0d9-b375-4eb7-bd00-26eb2bdc42f8", + "x-ms-routing-request-id": "WESTUS2:20210616T000427Z:21f2f0d9-b375-4eb7-bd00-26eb2bdc42f8" }, "ResponseBody": [] }, @@ -8416,7 +8559,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1b1f1a9e7b33e2ff83467c900e5d0c4b", "x-ms-return-client-request-id": "true" }, @@ -8425,17 +8568,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:53 GMT", + "Date": "Wed, 16 Jun 2021 00:04:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "69fedc1d-4d49-45fd-a7b2-63ea953da7d8", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-request-id": "69fedc1d-4d49-45fd-a7b2-63ea953da7d8", - "x-ms-routing-request-id": "WESTUS2:20210519T185854Z:69fedc1d-4d49-45fd-a7b2-63ea953da7d8" + "x-ms-correlation-request-id": "1b640e1d-3f1a-416b-b98b-e3e0411b6701", + "x-ms-ratelimit-remaining-subscription-reads": "11529", + "x-ms-request-id": "1b640e1d-3f1a-416b-b98b-e3e0411b6701", + "x-ms-routing-request-id": "WESTUS2:20210616T000428Z:1b640e1d-3f1a-416b-b98b-e3e0411b6701" }, "ResponseBody": [] }, @@ -8444,7 +8587,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e58319e1ae80508a2f88a8edd9a868eb", "x-ms-return-client-request-id": "true" }, @@ -8453,17 +8596,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:54 GMT", + "Date": "Wed, 16 Jun 2021 00:04:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cda42a89-0658-4bb0-bbe5-b8fc296979a2", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-request-id": "cda42a89-0658-4bb0-bbe5-b8fc296979a2", - "x-ms-routing-request-id": "WESTUS2:20210519T185855Z:cda42a89-0658-4bb0-bbe5-b8fc296979a2" + "x-ms-correlation-request-id": "71631766-927c-4d27-9784-b27250fcacc2", + "x-ms-ratelimit-remaining-subscription-reads": "11527", + "x-ms-request-id": "71631766-927c-4d27-9784-b27250fcacc2", + "x-ms-routing-request-id": "WESTUS2:20210616T000429Z:71631766-927c-4d27-9784-b27250fcacc2" }, "ResponseBody": [] }, @@ -8472,7 +8615,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64f2ec0aa2aad2adf5e7351007f4a349", "x-ms-return-client-request-id": "true" }, @@ -8481,17 +8624,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:55 GMT", + "Date": "Wed, 16 Jun 2021 00:04:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7e510cba-f67c-4dc5-8556-c1a90296fb2c", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-request-id": "7e510cba-f67c-4dc5-8556-c1a90296fb2c", - "x-ms-routing-request-id": "WESTUS2:20210519T185856Z:7e510cba-f67c-4dc5-8556-c1a90296fb2c" + "x-ms-correlation-request-id": "0ae693dd-9940-43f0-b660-27cdc0f8056f", + "x-ms-ratelimit-remaining-subscription-reads": "11525", + "x-ms-request-id": "0ae693dd-9940-43f0-b660-27cdc0f8056f", + "x-ms-routing-request-id": "WESTUS2:20210616T000430Z:0ae693dd-9940-43f0-b660-27cdc0f8056f" }, "ResponseBody": [] }, @@ -8500,7 +8643,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4b2f18de6d0efc58fceecabd31109db", "x-ms-return-client-request-id": "true" }, @@ -8509,17 +8652,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:56 GMT", + "Date": "Wed, 16 Jun 2021 00:04:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "088d5344-577b-49ae-acd4-09214f643547", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "088d5344-577b-49ae-acd4-09214f643547", - "x-ms-routing-request-id": "WESTUS2:20210519T185857Z:088d5344-577b-49ae-acd4-09214f643547" + "x-ms-correlation-request-id": "7e5977bb-2157-4c96-af3c-4439df0cf525", + "x-ms-ratelimit-remaining-subscription-reads": "11523", + "x-ms-request-id": "7e5977bb-2157-4c96-af3c-4439df0cf525", + "x-ms-routing-request-id": "WESTUS2:20210616T000431Z:7e5977bb-2157-4c96-af3c-4439df0cf525" }, "ResponseBody": [] }, @@ -8528,7 +8671,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "228591dda86b3ea06cb0f099787a493a", "x-ms-return-client-request-id": "true" }, @@ -8537,17 +8680,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:57 GMT", + "Date": "Wed, 16 Jun 2021 00:04:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "89682470-9653-482d-848c-33bdf4c21a98", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "89682470-9653-482d-848c-33bdf4c21a98", - "x-ms-routing-request-id": "WESTUS2:20210519T185858Z:89682470-9653-482d-848c-33bdf4c21a98" + "x-ms-correlation-request-id": "e451c682-6bda-41a4-9558-fc6a4ca8f70d", + "x-ms-ratelimit-remaining-subscription-reads": "11521", + "x-ms-request-id": "e451c682-6bda-41a4-9558-fc6a4ca8f70d", + "x-ms-routing-request-id": "WESTUS2:20210616T000432Z:e451c682-6bda-41a4-9558-fc6a4ca8f70d" }, "ResponseBody": [] }, @@ -8556,7 +8699,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e7605fe4c4f5241a2602d4dcb502ffe3", "x-ms-return-client-request-id": "true" }, @@ -8565,17 +8708,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:58 GMT", + "Date": "Wed, 16 Jun 2021 00:04:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1df7beda-a364-49cc-9832-c5e7ad9d69ba", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "1df7beda-a364-49cc-9832-c5e7ad9d69ba", - "x-ms-routing-request-id": "WESTUS2:20210519T185859Z:1df7beda-a364-49cc-9832-c5e7ad9d69ba" + "x-ms-correlation-request-id": "bed07031-2010-457f-b1e9-a84ea87fce09", + "x-ms-ratelimit-remaining-subscription-reads": "11519", + "x-ms-request-id": "bed07031-2010-457f-b1e9-a84ea87fce09", + "x-ms-routing-request-id": "WESTUS2:20210616T000433Z:bed07031-2010-457f-b1e9-a84ea87fce09" }, "ResponseBody": [] }, @@ -8584,7 +8727,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75325add816fe5de5073381ff62b7615", "x-ms-return-client-request-id": "true" }, @@ -8593,17 +8736,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:58:59 GMT", + "Date": "Wed, 16 Jun 2021 00:04:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "af60afb4-2931-424c-92d3-32f06619ef36", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "af60afb4-2931-424c-92d3-32f06619ef36", - "x-ms-routing-request-id": "WESTUS2:20210519T185900Z:af60afb4-2931-424c-92d3-32f06619ef36" + "x-ms-correlation-request-id": "cc685e1a-89dc-4a69-bfe5-027fbf70590e", + "x-ms-ratelimit-remaining-subscription-reads": "11517", + "x-ms-request-id": "cc685e1a-89dc-4a69-bfe5-027fbf70590e", + "x-ms-routing-request-id": "WESTUS2:20210616T000434Z:cc685e1a-89dc-4a69-bfe5-027fbf70590e" }, "ResponseBody": [] }, @@ -8612,7 +8755,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "73c6b28422b119e57661fb68d3c48969", "x-ms-return-client-request-id": "true" }, @@ -8621,17 +8764,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:00 GMT", + "Date": "Wed, 16 Jun 2021 00:04:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7e751b70-82d4-4256-8ba0-577824c81cfb", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "7e751b70-82d4-4256-8ba0-577824c81cfb", - "x-ms-routing-request-id": "WESTUS2:20210519T185901Z:7e751b70-82d4-4256-8ba0-577824c81cfb" + "x-ms-correlation-request-id": "bf7734a5-a8aa-46ac-be3b-07947ad5b10a", + "x-ms-ratelimit-remaining-subscription-reads": "11515", + "x-ms-request-id": "bf7734a5-a8aa-46ac-be3b-07947ad5b10a", + "x-ms-routing-request-id": "WESTUS2:20210616T000435Z:bf7734a5-a8aa-46ac-be3b-07947ad5b10a" }, "ResponseBody": [] }, @@ -8640,7 +8783,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ebc0cb1d34763cb817b96818bfa2dfb", "x-ms-return-client-request-id": "true" }, @@ -8649,17 +8792,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:01 GMT", + "Date": "Wed, 16 Jun 2021 00:04:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "56de3d21-a4c7-4fc8-b305-844dd3664ee6", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "56de3d21-a4c7-4fc8-b305-844dd3664ee6", - "x-ms-routing-request-id": "WESTUS2:20210519T185902Z:56de3d21-a4c7-4fc8-b305-844dd3664ee6" + "x-ms-correlation-request-id": "f5139b30-6aa5-4130-b3f7-40a21c092ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11513", + "x-ms-request-id": "f5139b30-6aa5-4130-b3f7-40a21c092ba1", + "x-ms-routing-request-id": "WESTUS2:20210616T000436Z:f5139b30-6aa5-4130-b3f7-40a21c092ba1" }, "ResponseBody": [] }, @@ -8668,7 +8811,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0357bf8b8b3bbb327418ff0d8575118c", "x-ms-return-client-request-id": "true" }, @@ -8677,17 +8820,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:03 GMT", + "Date": "Wed, 16 Jun 2021 00:04:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "69b24bc3-51bb-4519-8108-9b8d9aa3eef3", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "69b24bc3-51bb-4519-8108-9b8d9aa3eef3", - "x-ms-routing-request-id": "WESTUS2:20210519T185903Z:69b24bc3-51bb-4519-8108-9b8d9aa3eef3" + "x-ms-correlation-request-id": "0f664f6e-82b5-4a38-9e42-bd1b21ac7a57", + "x-ms-ratelimit-remaining-subscription-reads": "11511", + "x-ms-request-id": "0f664f6e-82b5-4a38-9e42-bd1b21ac7a57", + "x-ms-routing-request-id": "WESTUS2:20210616T000437Z:0f664f6e-82b5-4a38-9e42-bd1b21ac7a57" }, "ResponseBody": [] }, @@ -8696,7 +8839,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea6eceea586fb1cde663f2368b648e7c", "x-ms-return-client-request-id": "true" }, @@ -8705,17 +8848,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:05 GMT", + "Date": "Wed, 16 Jun 2021 00:04:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5d30b221-934b-4a79-9d53-6fdf6fb6e1de", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "5d30b221-934b-4a79-9d53-6fdf6fb6e1de", - "x-ms-routing-request-id": "WESTUS2:20210519T185905Z:5d30b221-934b-4a79-9d53-6fdf6fb6e1de" + "x-ms-correlation-request-id": "a8dc1be8-a4bf-452b-bb73-b01d8d36eaad", + "x-ms-ratelimit-remaining-subscription-reads": "11509", + "x-ms-request-id": "a8dc1be8-a4bf-452b-bb73-b01d8d36eaad", + "x-ms-routing-request-id": "WESTUS2:20210616T000438Z:a8dc1be8-a4bf-452b-bb73-b01d8d36eaad" }, "ResponseBody": [] }, @@ -8724,7 +8867,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13dd0034856d252eda00a92fd4bedd0b", "x-ms-return-client-request-id": "true" }, @@ -8733,17 +8876,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:06 GMT", + "Date": "Wed, 16 Jun 2021 00:04:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "cc76d7de-0462-44ed-8395-3379fdfc430b", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "cc76d7de-0462-44ed-8395-3379fdfc430b", - "x-ms-routing-request-id": "WESTUS2:20210519T185906Z:cc76d7de-0462-44ed-8395-3379fdfc430b" + "x-ms-correlation-request-id": "e5a3b659-2a46-4e64-951d-eefeae8b71cd", + "x-ms-ratelimit-remaining-subscription-reads": "11507", + "x-ms-request-id": "e5a3b659-2a46-4e64-951d-eefeae8b71cd", + "x-ms-routing-request-id": "WESTUS2:20210616T000440Z:e5a3b659-2a46-4e64-951d-eefeae8b71cd" }, "ResponseBody": [] }, @@ -8752,7 +8895,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc970a69438c328bf2a61cd898fc3010", "x-ms-return-client-request-id": "true" }, @@ -8761,17 +8904,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:07 GMT", + "Date": "Wed, 16 Jun 2021 00:04:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3574ffa5-7eb9-427f-8fb7-075d49ce836e", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "3574ffa5-7eb9-427f-8fb7-075d49ce836e", - "x-ms-routing-request-id": "WESTUS2:20210519T185907Z:3574ffa5-7eb9-427f-8fb7-075d49ce836e" + "x-ms-correlation-request-id": "ada7f34b-4659-40a5-a363-77ac7072f711", + "x-ms-ratelimit-remaining-subscription-reads": "11505", + "x-ms-request-id": "ada7f34b-4659-40a5-a363-77ac7072f711", + "x-ms-routing-request-id": "WESTUS2:20210616T000441Z:ada7f34b-4659-40a5-a363-77ac7072f711" }, "ResponseBody": [] }, @@ -8780,7 +8923,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85d9838afd98641fa0480f6eaf9edc28", "x-ms-return-client-request-id": "true" }, @@ -8789,17 +8932,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:08 GMT", + "Date": "Wed, 16 Jun 2021 00:04:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7fe43918-d90e-4f08-b988-e651107e2822", - "x-ms-ratelimit-remaining-subscription-reads": "11706", - "x-ms-request-id": "7fe43918-d90e-4f08-b988-e651107e2822", - "x-ms-routing-request-id": "WESTUS2:20210519T185908Z:7fe43918-d90e-4f08-b988-e651107e2822" + "x-ms-correlation-request-id": "92852146-2154-46e7-b948-8ec04774b739", + "x-ms-ratelimit-remaining-subscription-reads": "11503", + "x-ms-request-id": "92852146-2154-46e7-b948-8ec04774b739", + "x-ms-routing-request-id": "WESTUS2:20210616T000442Z:92852146-2154-46e7-b948-8ec04774b739" }, "ResponseBody": [] }, @@ -8808,7 +8951,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80cce785d1ccf0ef75aa21c668558dde", "x-ms-return-client-request-id": "true" }, @@ -8817,17 +8960,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:09 GMT", + "Date": "Wed, 16 Jun 2021 00:04:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ee97890b-7a1b-417f-90ff-d3e28f69bd76", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "ee97890b-7a1b-417f-90ff-d3e28f69bd76", - "x-ms-routing-request-id": "WESTUS2:20210519T185909Z:ee97890b-7a1b-417f-90ff-d3e28f69bd76" + "x-ms-correlation-request-id": "e781c1c6-2f94-47d5-a0fd-261876a3c95e", + "x-ms-ratelimit-remaining-subscription-reads": "11501", + "x-ms-request-id": "e781c1c6-2f94-47d5-a0fd-261876a3c95e", + "x-ms-routing-request-id": "WESTUS2:20210616T000443Z:e781c1c6-2f94-47d5-a0fd-261876a3c95e" }, "ResponseBody": [] }, @@ -8836,7 +8979,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "51a498d058e56c73eb321b43331c8354", "x-ms-return-client-request-id": "true" }, @@ -8845,17 +8988,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:10 GMT", + "Date": "Wed, 16 Jun 2021 00:04:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa", - "x-ms-routing-request-id": "WESTUS2:20210519T185910Z:08b8cd84-af6f-4e1c-b32a-d9b87bdc83aa" + "x-ms-correlation-request-id": "7a154e1a-105d-4a9f-8889-4f254f2b366a", + "x-ms-ratelimit-remaining-subscription-reads": "11499", + "x-ms-request-id": "7a154e1a-105d-4a9f-8889-4f254f2b366a", + "x-ms-routing-request-id": "WESTUS2:20210616T000444Z:7a154e1a-105d-4a9f-8889-4f254f2b366a" }, "ResponseBody": [] }, @@ -8864,7 +9007,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b152f4c9af2fb84393e810eedc58fb4b", "x-ms-return-client-request-id": "true" }, @@ -8873,17 +9016,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:11 GMT", + "Date": "Wed, 16 Jun 2021 00:04:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d7a3bd78-ef4a-4834-bfbb-5862d004380c", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "d7a3bd78-ef4a-4834-bfbb-5862d004380c", - "x-ms-routing-request-id": "WESTUS2:20210519T185911Z:d7a3bd78-ef4a-4834-bfbb-5862d004380c" + "x-ms-correlation-request-id": "a6b1bbe0-9487-4a11-ab1a-4a9efc8b8326", + "x-ms-ratelimit-remaining-subscription-reads": "11497", + "x-ms-request-id": "a6b1bbe0-9487-4a11-ab1a-4a9efc8b8326", + "x-ms-routing-request-id": "WESTUS2:20210616T000445Z:a6b1bbe0-9487-4a11-ab1a-4a9efc8b8326" }, "ResponseBody": [] }, @@ -8892,7 +9035,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "169e31bb8af92c43745f9599b6acbd58", "x-ms-return-client-request-id": "true" }, @@ -8901,17 +9044,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:12 GMT", + "Date": "Wed, 16 Jun 2021 00:04:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f5eb958a-40e9-4740-a978-c4487f801ab3", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "f5eb958a-40e9-4740-a978-c4487f801ab3", - "x-ms-routing-request-id": "WESTUS2:20210519T185912Z:f5eb958a-40e9-4740-a978-c4487f801ab3" + "x-ms-correlation-request-id": "81786939-30c2-46e8-b74c-3a06c798af0c", + "x-ms-ratelimit-remaining-subscription-reads": "11495", + "x-ms-request-id": "81786939-30c2-46e8-b74c-3a06c798af0c", + "x-ms-routing-request-id": "WESTUS2:20210616T000446Z:81786939-30c2-46e8-b74c-3a06c798af0c" }, "ResponseBody": [] }, @@ -8920,7 +9063,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "74fdcc26db0221ae54ebbefc48849092", "x-ms-return-client-request-id": "true" }, @@ -8929,17 +9072,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:13 GMT", + "Date": "Wed, 16 Jun 2021 00:04:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "31aeaacf-c793-4b2e-a1f0-f2d1c443794b", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "31aeaacf-c793-4b2e-a1f0-f2d1c443794b", - "x-ms-routing-request-id": "WESTUS2:20210519T185913Z:31aeaacf-c793-4b2e-a1f0-f2d1c443794b" + "x-ms-correlation-request-id": "ee7a128c-a3b5-4a29-bdfc-06b2f5917e9e", + "x-ms-ratelimit-remaining-subscription-reads": "11493", + "x-ms-request-id": "ee7a128c-a3b5-4a29-bdfc-06b2f5917e9e", + "x-ms-routing-request-id": "WESTUS2:20210616T000447Z:ee7a128c-a3b5-4a29-bdfc-06b2f5917e9e" }, "ResponseBody": [] }, @@ -8948,7 +9091,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0187d0376c7e3f5ab1263dd019aa02e6", "x-ms-return-client-request-id": "true" }, @@ -8957,17 +9100,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:14 GMT", + "Date": "Wed, 16 Jun 2021 00:04:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3265169e-6b16-49a8-ad2a-97ce225d01e1", - "x-ms-ratelimit-remaining-subscription-reads": "11694", - "x-ms-request-id": "3265169e-6b16-49a8-ad2a-97ce225d01e1", - "x-ms-routing-request-id": "WESTUS2:20210519T185914Z:3265169e-6b16-49a8-ad2a-97ce225d01e1" + "x-ms-correlation-request-id": "6d542abe-8c5e-444b-91de-78c97fffc707", + "x-ms-ratelimit-remaining-subscription-reads": "11491", + "x-ms-request-id": "6d542abe-8c5e-444b-91de-78c97fffc707", + "x-ms-routing-request-id": "WESTUS2:20210616T000448Z:6d542abe-8c5e-444b-91de-78c97fffc707" }, "ResponseBody": [] }, @@ -8976,7 +9119,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fc7b72a875be048837cc10dcc46e4ef", "x-ms-return-client-request-id": "true" }, @@ -8985,17 +9128,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:15 GMT", + "Date": "Wed, 16 Jun 2021 00:04:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1aa9472b-d597-4c1c-b378-cb4222dfc5e1", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "1aa9472b-d597-4c1c-b378-cb4222dfc5e1", - "x-ms-routing-request-id": "WESTUS2:20210519T185915Z:1aa9472b-d597-4c1c-b378-cb4222dfc5e1" + "x-ms-correlation-request-id": "6e918e51-cd44-4e66-b05d-96a3ed9b1e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11489", + "x-ms-request-id": "6e918e51-cd44-4e66-b05d-96a3ed9b1e5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000449Z:6e918e51-cd44-4e66-b05d-96a3ed9b1e5e" }, "ResponseBody": [] }, @@ -9004,7 +9147,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e66203cfbb25bad971bdc3dc9ede08aa", "x-ms-return-client-request-id": "true" }, @@ -9013,17 +9156,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:16 GMT", + "Date": "Wed, 16 Jun 2021 00:04:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "87205ba6-5972-4bed-9e30-8b13d3e32038", - "x-ms-ratelimit-remaining-subscription-reads": "11690", - "x-ms-request-id": "87205ba6-5972-4bed-9e30-8b13d3e32038", - "x-ms-routing-request-id": "WESTUS2:20210519T185916Z:87205ba6-5972-4bed-9e30-8b13d3e32038" + "x-ms-correlation-request-id": "cda36313-54b9-4f5b-9923-a23bc673fea3", + "x-ms-ratelimit-remaining-subscription-reads": "11487", + "x-ms-request-id": "cda36313-54b9-4f5b-9923-a23bc673fea3", + "x-ms-routing-request-id": "WESTUS2:20210616T000450Z:cda36313-54b9-4f5b-9923-a23bc673fea3" }, "ResponseBody": [] }, @@ -9032,7 +9175,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90d2d8e980bdaf3787a77e02aa4d726a", "x-ms-return-client-request-id": "true" }, @@ -9041,17 +9184,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:17 GMT", + "Date": "Wed, 16 Jun 2021 00:04:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1796910a-c64b-484b-aca4-717f6ec56457", - "x-ms-ratelimit-remaining-subscription-reads": "11688", - "x-ms-request-id": "1796910a-c64b-484b-aca4-717f6ec56457", - "x-ms-routing-request-id": "WESTUS2:20210519T185917Z:1796910a-c64b-484b-aca4-717f6ec56457" + "x-ms-correlation-request-id": "7bf452f0-f498-448b-9cfc-90d726626568", + "x-ms-ratelimit-remaining-subscription-reads": "11485", + "x-ms-request-id": "7bf452f0-f498-448b-9cfc-90d726626568", + "x-ms-routing-request-id": "WESTUS2:20210616T000451Z:7bf452f0-f498-448b-9cfc-90d726626568" }, "ResponseBody": [] }, @@ -9060,7 +9203,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16004d411b476fc1de0c9d9dc46c41a4", "x-ms-return-client-request-id": "true" }, @@ -9069,17 +9212,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:18 GMT", + "Date": "Wed, 16 Jun 2021 00:04:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ea44c125-82b0-4b67-b2c1-3e88403b3ff4", - "x-ms-ratelimit-remaining-subscription-reads": "11686", - "x-ms-request-id": "ea44c125-82b0-4b67-b2c1-3e88403b3ff4", - "x-ms-routing-request-id": "WESTUS2:20210519T185918Z:ea44c125-82b0-4b67-b2c1-3e88403b3ff4" + "x-ms-correlation-request-id": "6f8d523c-31ea-44b2-80f9-81cfb75c6415", + "x-ms-ratelimit-remaining-subscription-reads": "11483", + "x-ms-request-id": "6f8d523c-31ea-44b2-80f9-81cfb75c6415", + "x-ms-routing-request-id": "WESTUS2:20210616T000452Z:6f8d523c-31ea-44b2-80f9-81cfb75c6415" }, "ResponseBody": [] }, @@ -9088,7 +9231,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f324177453744e31cbb35f7d3dd60f24", "x-ms-return-client-request-id": "true" }, @@ -9097,17 +9240,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:19 GMT", + "Date": "Wed, 16 Jun 2021 00:04:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "587392eb-2e3e-481d-b6bb-c1750153bad8", - "x-ms-ratelimit-remaining-subscription-reads": "11684", - "x-ms-request-id": "587392eb-2e3e-481d-b6bb-c1750153bad8", - "x-ms-routing-request-id": "WESTUS2:20210519T185919Z:587392eb-2e3e-481d-b6bb-c1750153bad8" + "x-ms-correlation-request-id": "98822ff7-7380-455c-9ea1-8efa8ca49356", + "x-ms-ratelimit-remaining-subscription-reads": "11481", + "x-ms-request-id": "98822ff7-7380-455c-9ea1-8efa8ca49356", + "x-ms-routing-request-id": "WESTUS2:20210616T000453Z:98822ff7-7380-455c-9ea1-8efa8ca49356" }, "ResponseBody": [] }, @@ -9116,7 +9259,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "509a584bf2ddce631663b1b0e399eb1a", "x-ms-return-client-request-id": "true" }, @@ -9125,17 +9268,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:20 GMT", + "Date": "Wed, 16 Jun 2021 00:04:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7b2837c7-fe99-4e2a-86bf-db7303a2ed37", - "x-ms-ratelimit-remaining-subscription-reads": "11682", - "x-ms-request-id": "7b2837c7-fe99-4e2a-86bf-db7303a2ed37", - "x-ms-routing-request-id": "WESTUS2:20210519T185920Z:7b2837c7-fe99-4e2a-86bf-db7303a2ed37" + "x-ms-correlation-request-id": "e7e96568-9127-476d-ad4f-daaac84e3e72", + "x-ms-ratelimit-remaining-subscription-reads": "11479", + "x-ms-request-id": "e7e96568-9127-476d-ad4f-daaac84e3e72", + "x-ms-routing-request-id": "WESTUS2:20210616T000454Z:e7e96568-9127-476d-ad4f-daaac84e3e72" }, "ResponseBody": [] }, @@ -9144,7 +9287,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "938dd9667e29edf61cb24a94bc433107", "x-ms-return-client-request-id": "true" }, @@ -9153,17 +9296,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:21 GMT", + "Date": "Wed, 16 Jun 2021 00:04:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "20d62f9c-f992-42dd-b4f6-9249ad249dab", - "x-ms-ratelimit-remaining-subscription-reads": "11680", - "x-ms-request-id": "20d62f9c-f992-42dd-b4f6-9249ad249dab", - "x-ms-routing-request-id": "WESTUS2:20210519T185921Z:20d62f9c-f992-42dd-b4f6-9249ad249dab" + "x-ms-correlation-request-id": "3dc89dbc-46f9-40d4-9b1d-0b75c6e62fc2", + "x-ms-ratelimit-remaining-subscription-reads": "11477", + "x-ms-request-id": "3dc89dbc-46f9-40d4-9b1d-0b75c6e62fc2", + "x-ms-routing-request-id": "WESTUS2:20210616T000455Z:3dc89dbc-46f9-40d4-9b1d-0b75c6e62fc2" }, "ResponseBody": [] }, @@ -9172,7 +9315,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6b5278fdf0d182c7b355dc11a1806b32", "x-ms-return-client-request-id": "true" }, @@ -9181,17 +9324,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:22 GMT", + "Date": "Wed, 16 Jun 2021 00:04:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c1e300df-75cd-4ada-8f60-3912aee53e9d", - "x-ms-ratelimit-remaining-subscription-reads": "11678", - "x-ms-request-id": "c1e300df-75cd-4ada-8f60-3912aee53e9d", - "x-ms-routing-request-id": "WESTUS2:20210519T185922Z:c1e300df-75cd-4ada-8f60-3912aee53e9d" + "x-ms-correlation-request-id": "39e64eca-6cf0-4fe1-93a9-acddcacb2a85", + "x-ms-ratelimit-remaining-subscription-reads": "11475", + "x-ms-request-id": "39e64eca-6cf0-4fe1-93a9-acddcacb2a85", + "x-ms-routing-request-id": "WESTUS2:20210616T000456Z:39e64eca-6cf0-4fe1-93a9-acddcacb2a85" }, "ResponseBody": [] }, @@ -9200,7 +9343,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "631744c77b49ccfb62ad342ba7cf12d3", "x-ms-return-client-request-id": "true" }, @@ -9209,17 +9352,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:23 GMT", + "Date": "Wed, 16 Jun 2021 00:04:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8af0bfb0-ca7d-46f7-84d7-63254a71c30d", - "x-ms-ratelimit-remaining-subscription-reads": "11676", - "x-ms-request-id": "8af0bfb0-ca7d-46f7-84d7-63254a71c30d", - "x-ms-routing-request-id": "WESTUS2:20210519T185923Z:8af0bfb0-ca7d-46f7-84d7-63254a71c30d" + "x-ms-correlation-request-id": "54b902ae-efa0-4583-837a-b94aac4ab340", + "x-ms-ratelimit-remaining-subscription-reads": "11473", + "x-ms-request-id": "54b902ae-efa0-4583-837a-b94aac4ab340", + "x-ms-routing-request-id": "WESTUS2:20210616T000457Z:54b902ae-efa0-4583-837a-b94aac4ab340" }, "ResponseBody": [] }, @@ -9228,7 +9371,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ab3a9317f477549120be0d3a1e54b9b", "x-ms-return-client-request-id": "true" }, @@ -9237,17 +9380,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:24 GMT", + "Date": "Wed, 16 Jun 2021 00:04:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "aa956b3b-7927-49d3-8a38-055cc1db92c8", - "x-ms-ratelimit-remaining-subscription-reads": "11675", - "x-ms-request-id": "aa956b3b-7927-49d3-8a38-055cc1db92c8", - "x-ms-routing-request-id": "WESTUS2:20210519T185924Z:aa956b3b-7927-49d3-8a38-055cc1db92c8" + "x-ms-correlation-request-id": "aaf4b585-1575-4fc5-bed6-9aed6c9f1f45", + "x-ms-ratelimit-remaining-subscription-reads": "11471", + "x-ms-request-id": "aaf4b585-1575-4fc5-bed6-9aed6c9f1f45", + "x-ms-routing-request-id": "WESTUS2:20210616T000458Z:aaf4b585-1575-4fc5-bed6-9aed6c9f1f45" }, "ResponseBody": [] }, @@ -9256,7 +9399,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "77cc1847ce2b81be7c860924bc9bdae3", "x-ms-return-client-request-id": "true" }, @@ -9265,17 +9408,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:25 GMT", + "Date": "Wed, 16 Jun 2021 00:04:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "39670d8d-1b0a-467e-acac-4c01e0c7bce6", - "x-ms-ratelimit-remaining-subscription-reads": "11674", - "x-ms-request-id": "39670d8d-1b0a-467e-acac-4c01e0c7bce6", - "x-ms-routing-request-id": "WESTUS2:20210519T185925Z:39670d8d-1b0a-467e-acac-4c01e0c7bce6" + "x-ms-correlation-request-id": "8acdcbfe-83f3-4ea8-a962-8cc1eb0dd34a", + "x-ms-ratelimit-remaining-subscription-reads": "11469", + "x-ms-request-id": "8acdcbfe-83f3-4ea8-a962-8cc1eb0dd34a", + "x-ms-routing-request-id": "WESTUS2:20210616T000459Z:8acdcbfe-83f3-4ea8-a962-8cc1eb0dd34a" }, "ResponseBody": [] }, @@ -9284,7 +9427,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f8df094300cd48eafaa2513e9b282a7c", "x-ms-return-client-request-id": "true" }, @@ -9293,17 +9436,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:25 GMT", + "Date": "Wed, 16 Jun 2021 00:04:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "834cb78a-38bd-4435-aec7-62bf88cad6a1", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "834cb78a-38bd-4435-aec7-62bf88cad6a1", - "x-ms-routing-request-id": "WESTUS2:20210519T185926Z:834cb78a-38bd-4435-aec7-62bf88cad6a1" + "x-ms-correlation-request-id": "2565b65d-7161-47a2-95aa-ecc0ff9fff2b", + "x-ms-ratelimit-remaining-subscription-reads": "11467", + "x-ms-request-id": "2565b65d-7161-47a2-95aa-ecc0ff9fff2b", + "x-ms-routing-request-id": "WESTUS2:20210616T000500Z:2565b65d-7161-47a2-95aa-ecc0ff9fff2b" }, "ResponseBody": [] }, @@ -9312,7 +9455,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fe498619a0362a7eb32edc17625b876", "x-ms-return-client-request-id": "true" }, @@ -9321,17 +9464,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:27 GMT", + "Date": "Wed, 16 Jun 2021 00:05:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3b0c1e6c-deb0-481c-a108-de6dac4d0823", - "x-ms-ratelimit-remaining-subscription-reads": "11672", - "x-ms-request-id": "3b0c1e6c-deb0-481c-a108-de6dac4d0823", - "x-ms-routing-request-id": "WESTUS2:20210519T185927Z:3b0c1e6c-deb0-481c-a108-de6dac4d0823" + "x-ms-correlation-request-id": "a91e00e2-7caf-48fb-ac03-32106c47c356", + "x-ms-ratelimit-remaining-subscription-reads": "11465", + "x-ms-request-id": "a91e00e2-7caf-48fb-ac03-32106c47c356", + "x-ms-routing-request-id": "WESTUS2:20210616T000501Z:a91e00e2-7caf-48fb-ac03-32106c47c356" }, "ResponseBody": [] }, @@ -9340,7 +9483,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "988ffc30530546ce2d847d897d80e554", "x-ms-return-client-request-id": "true" }, @@ -9349,17 +9492,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:28 GMT", + "Date": "Wed, 16 Jun 2021 00:05:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5bf0f7c4-40d2-413c-83f6-071cd3019c73", - "x-ms-ratelimit-remaining-subscription-reads": "11671", - "x-ms-request-id": "5bf0f7c4-40d2-413c-83f6-071cd3019c73", - "x-ms-routing-request-id": "WESTUS2:20210519T185928Z:5bf0f7c4-40d2-413c-83f6-071cd3019c73" + "x-ms-correlation-request-id": "568caf7a-b342-46d4-ba3f-2bdabbc22dfe", + "x-ms-ratelimit-remaining-subscription-reads": "11463", + "x-ms-request-id": "568caf7a-b342-46d4-ba3f-2bdabbc22dfe", + "x-ms-routing-request-id": "WESTUS2:20210616T000502Z:568caf7a-b342-46d4-ba3f-2bdabbc22dfe" }, "ResponseBody": [] }, @@ -9368,7 +9511,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23c38c5c4ab7a9e0617c0c9a1229d1d5", "x-ms-return-client-request-id": "true" }, @@ -9377,17 +9520,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:29 GMT", + "Date": "Wed, 16 Jun 2021 00:05:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d2570d81-0378-4b64-a8b3-2e770cc6255c", - "x-ms-ratelimit-remaining-subscription-reads": "11670", - "x-ms-request-id": "d2570d81-0378-4b64-a8b3-2e770cc6255c", - "x-ms-routing-request-id": "WESTUS2:20210519T185929Z:d2570d81-0378-4b64-a8b3-2e770cc6255c" + "x-ms-correlation-request-id": "84b303e2-6cfe-4411-8c86-022ad67b5112", + "x-ms-ratelimit-remaining-subscription-reads": "11461", + "x-ms-request-id": "84b303e2-6cfe-4411-8c86-022ad67b5112", + "x-ms-routing-request-id": "WESTUS2:20210616T000503Z:84b303e2-6cfe-4411-8c86-022ad67b5112" }, "ResponseBody": [] }, @@ -9396,7 +9539,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9f0ddae991980d77ca9d627e1c1de56b", "x-ms-return-client-request-id": "true" }, @@ -9405,17 +9548,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:30 GMT", + "Date": "Wed, 16 Jun 2021 00:05:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "637e0536-efcb-428e-83d6-f0946737a26d", - "x-ms-ratelimit-remaining-subscription-reads": "11669", - "x-ms-request-id": "637e0536-efcb-428e-83d6-f0946737a26d", - "x-ms-routing-request-id": "WESTUS2:20210519T185930Z:637e0536-efcb-428e-83d6-f0946737a26d" + "x-ms-correlation-request-id": "3c109d24-a533-4a53-bf09-0cab4cc34cfa", + "x-ms-ratelimit-remaining-subscription-reads": "11459", + "x-ms-request-id": "3c109d24-a533-4a53-bf09-0cab4cc34cfa", + "x-ms-routing-request-id": "WESTUS2:20210616T000504Z:3c109d24-a533-4a53-bf09-0cab4cc34cfa" }, "ResponseBody": [] }, @@ -9424,7 +9567,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e965994c9561e5bf1be6368947333404", "x-ms-return-client-request-id": "true" }, @@ -9433,17 +9576,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:31 GMT", + "Date": "Wed, 16 Jun 2021 00:05:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fb617e05-a63e-479b-a386-36f693e07dec", - "x-ms-ratelimit-remaining-subscription-reads": "11668", - "x-ms-request-id": "fb617e05-a63e-479b-a386-36f693e07dec", - "x-ms-routing-request-id": "WESTUS2:20210519T185931Z:fb617e05-a63e-479b-a386-36f693e07dec" + "x-ms-correlation-request-id": "a8e45b14-f103-427a-bbc1-fc18836d4374", + "x-ms-ratelimit-remaining-subscription-reads": "11457", + "x-ms-request-id": "a8e45b14-f103-427a-bbc1-fc18836d4374", + "x-ms-routing-request-id": "WESTUS2:20210616T000505Z:a8e45b14-f103-427a-bbc1-fc18836d4374" }, "ResponseBody": [] }, @@ -9452,7 +9595,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3a0a7b24672cabb15b65919e8618c43", "x-ms-return-client-request-id": "true" }, @@ -9461,17 +9604,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:32 GMT", + "Date": "Wed, 16 Jun 2021 00:05:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "25110f74-4e44-42aa-8811-6ea9f435da2b", - "x-ms-ratelimit-remaining-subscription-reads": "11667", - "x-ms-request-id": "25110f74-4e44-42aa-8811-6ea9f435da2b", - "x-ms-routing-request-id": "WESTUS2:20210519T185932Z:25110f74-4e44-42aa-8811-6ea9f435da2b" + "x-ms-correlation-request-id": "b4cc806e-aa89-4ea0-91fc-9ea165742743", + "x-ms-ratelimit-remaining-subscription-reads": "11455", + "x-ms-request-id": "b4cc806e-aa89-4ea0-91fc-9ea165742743", + "x-ms-routing-request-id": "WESTUS2:20210616T000506Z:b4cc806e-aa89-4ea0-91fc-9ea165742743" }, "ResponseBody": [] }, @@ -9480,7 +9623,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "784ea197e8c354731a2883b25beec596", "x-ms-return-client-request-id": "true" }, @@ -9489,17 +9632,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:33 GMT", + "Date": "Wed, 16 Jun 2021 00:05:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "12c44405-4c7c-40c6-953f-a6a7c46a5468", - "x-ms-ratelimit-remaining-subscription-reads": "11666", - "x-ms-request-id": "12c44405-4c7c-40c6-953f-a6a7c46a5468", - "x-ms-routing-request-id": "WESTUS2:20210519T185933Z:12c44405-4c7c-40c6-953f-a6a7c46a5468" + "x-ms-correlation-request-id": "2a0d1b13-07f6-43d0-b320-ad64649eafc1", + "x-ms-ratelimit-remaining-subscription-reads": "11453", + "x-ms-request-id": "2a0d1b13-07f6-43d0-b320-ad64649eafc1", + "x-ms-routing-request-id": "WESTUS2:20210616T000507Z:2a0d1b13-07f6-43d0-b320-ad64649eafc1" }, "ResponseBody": [] }, @@ -9508,7 +9651,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "75cc5d69427d05f8dd9ad3ab3ba6fcb9", "x-ms-return-client-request-id": "true" }, @@ -9517,17 +9660,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:34 GMT", + "Date": "Wed, 16 Jun 2021 00:05:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "fe7948f3-f09f-4ef2-bb23-912c2eda7742", - "x-ms-ratelimit-remaining-subscription-reads": "11665", - "x-ms-request-id": "fe7948f3-f09f-4ef2-bb23-912c2eda7742", - "x-ms-routing-request-id": "WESTUS2:20210519T185934Z:fe7948f3-f09f-4ef2-bb23-912c2eda7742" + "x-ms-correlation-request-id": "f6b5f14b-5158-4576-b6dc-893eda8fa8db", + "x-ms-ratelimit-remaining-subscription-reads": "11451", + "x-ms-request-id": "f6b5f14b-5158-4576-b6dc-893eda8fa8db", + "x-ms-routing-request-id": "WESTUS2:20210616T000508Z:f6b5f14b-5158-4576-b6dc-893eda8fa8db" }, "ResponseBody": [] }, @@ -9536,7 +9679,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a5f1f259bbe5ca40344c8849c3096f27", "x-ms-return-client-request-id": "true" }, @@ -9545,17 +9688,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:35 GMT", + "Date": "Wed, 16 Jun 2021 00:05:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b88c2519-baf4-4401-b2a0-7a55fb8b1827", - "x-ms-ratelimit-remaining-subscription-reads": "11664", - "x-ms-request-id": "b88c2519-baf4-4401-b2a0-7a55fb8b1827", - "x-ms-routing-request-id": "WESTUS2:20210519T185935Z:b88c2519-baf4-4401-b2a0-7a55fb8b1827" + "x-ms-correlation-request-id": "3c0a3a72-70e0-4b32-a1d5-9720ae55617a", + "x-ms-ratelimit-remaining-subscription-reads": "11449", + "x-ms-request-id": "3c0a3a72-70e0-4b32-a1d5-9720ae55617a", + "x-ms-routing-request-id": "WESTUS2:20210616T000510Z:3c0a3a72-70e0-4b32-a1d5-9720ae55617a" }, "ResponseBody": [] }, @@ -9564,7 +9707,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8bb0c3f0179554c6a8489b2914c71874", "x-ms-return-client-request-id": "true" }, @@ -9573,17 +9716,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:36 GMT", + "Date": "Wed, 16 Jun 2021 00:05:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5adcb3f7-edfd-4702-9081-89341ffdef5d", - "x-ms-ratelimit-remaining-subscription-reads": "11663", - "x-ms-request-id": "5adcb3f7-edfd-4702-9081-89341ffdef5d", - "x-ms-routing-request-id": "WESTUS2:20210519T185936Z:5adcb3f7-edfd-4702-9081-89341ffdef5d" + "x-ms-correlation-request-id": "ef511fce-e49d-4117-9878-342c0732a7e4", + "x-ms-ratelimit-remaining-subscription-reads": "11447", + "x-ms-request-id": "ef511fce-e49d-4117-9878-342c0732a7e4", + "x-ms-routing-request-id": "WESTUS2:20210616T000511Z:ef511fce-e49d-4117-9878-342c0732a7e4" }, "ResponseBody": [] }, @@ -9592,7 +9735,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6859c92b1ffcadb11c024031b9ae42d4", "x-ms-return-client-request-id": "true" }, @@ -9601,17 +9744,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:37 GMT", + "Date": "Wed, 16 Jun 2021 00:05:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "346bb997-6403-48c1-97b4-dfde0b09f57a", - "x-ms-ratelimit-remaining-subscription-reads": "11662", - "x-ms-request-id": "346bb997-6403-48c1-97b4-dfde0b09f57a", - "x-ms-routing-request-id": "WESTUS2:20210519T185938Z:346bb997-6403-48c1-97b4-dfde0b09f57a" + "x-ms-correlation-request-id": "5de776e1-92f9-469f-b410-b552ad1e733b", + "x-ms-ratelimit-remaining-subscription-reads": "11445", + "x-ms-request-id": "5de776e1-92f9-469f-b410-b552ad1e733b", + "x-ms-routing-request-id": "WESTUS2:20210616T000512Z:5de776e1-92f9-469f-b410-b552ad1e733b" }, "ResponseBody": [] }, @@ -9620,7 +9763,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78bbac2b71f542242c9dfd9d2017b66c", "x-ms-return-client-request-id": "true" }, @@ -9629,17 +9772,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:38 GMT", + "Date": "Wed, 16 Jun 2021 00:05:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0781bc96-90d6-40dc-93d9-6c2dcabab5d6", - "x-ms-ratelimit-remaining-subscription-reads": "11661", - "x-ms-request-id": "0781bc96-90d6-40dc-93d9-6c2dcabab5d6", - "x-ms-routing-request-id": "WESTUS2:20210519T185939Z:0781bc96-90d6-40dc-93d9-6c2dcabab5d6" + "x-ms-correlation-request-id": "bec3bbda-c97b-4ee1-80ca-031144aa83ac", + "x-ms-ratelimit-remaining-subscription-reads": "11443", + "x-ms-request-id": "bec3bbda-c97b-4ee1-80ca-031144aa83ac", + "x-ms-routing-request-id": "WESTUS2:20210616T000513Z:bec3bbda-c97b-4ee1-80ca-031144aa83ac" }, "ResponseBody": [] }, @@ -9648,7 +9791,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f91e143307afd02b12026e93d6949af9", "x-ms-return-client-request-id": "true" }, @@ -9657,17 +9800,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:39 GMT", + "Date": "Wed, 16 Jun 2021 00:05:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "80e81cd3-6151-49d2-ab99-0a1cd91ca76b", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "80e81cd3-6151-49d2-ab99-0a1cd91ca76b", - "x-ms-routing-request-id": "WESTUS2:20210519T185940Z:80e81cd3-6151-49d2-ab99-0a1cd91ca76b" + "x-ms-correlation-request-id": "4ee942ec-85f0-4e1e-ab90-5616805d7989", + "x-ms-ratelimit-remaining-subscription-reads": "11441", + "x-ms-request-id": "4ee942ec-85f0-4e1e-ab90-5616805d7989", + "x-ms-routing-request-id": "WESTUS2:20210616T000514Z:4ee942ec-85f0-4e1e-ab90-5616805d7989" }, "ResponseBody": [] }, @@ -9676,7 +9819,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "67fec605a00bba7ea5173b5e22148d05", "x-ms-return-client-request-id": "true" }, @@ -9685,17 +9828,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:40 GMT", + "Date": "Wed, 16 Jun 2021 00:05:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e42f599d-1d3e-4aea-a458-0971d39deb3b", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "e42f599d-1d3e-4aea-a458-0971d39deb3b", - "x-ms-routing-request-id": "WESTUS2:20210519T185941Z:e42f599d-1d3e-4aea-a458-0971d39deb3b" + "x-ms-correlation-request-id": "d944b3ed-dd7e-48b3-be37-a7286928c25b", + "x-ms-ratelimit-remaining-subscription-reads": "11439", + "x-ms-request-id": "d944b3ed-dd7e-48b3-be37-a7286928c25b", + "x-ms-routing-request-id": "WESTUS2:20210616T000515Z:d944b3ed-dd7e-48b3-be37-a7286928c25b" }, "ResponseBody": [] }, @@ -9704,7 +9847,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4fed44c4990242481eb66f303906b98", "x-ms-return-client-request-id": "true" }, @@ -9713,17 +9856,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:42 GMT", + "Date": "Wed, 16 Jun 2021 00:05:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "307078d9-9d53-4d4f-878a-fd0b4a028f83", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "307078d9-9d53-4d4f-878a-fd0b4a028f83", - "x-ms-routing-request-id": "WESTUS2:20210519T185942Z:307078d9-9d53-4d4f-878a-fd0b4a028f83" + "x-ms-correlation-request-id": "d6915e83-4873-4444-9b1d-75d567676d41", + "x-ms-ratelimit-remaining-subscription-reads": "11437", + "x-ms-request-id": "d6915e83-4873-4444-9b1d-75d567676d41", + "x-ms-routing-request-id": "WESTUS2:20210616T000516Z:d6915e83-4873-4444-9b1d-75d567676d41" }, "ResponseBody": [] }, @@ -9732,7 +9875,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "599703024e19936096635398cbccadfd", "x-ms-return-client-request-id": "true" }, @@ -9741,17 +9884,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:42 GMT", + "Date": "Wed, 16 Jun 2021 00:05:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "66ed75b4-31f5-4b04-9c82-1257e7331e4d", - "x-ms-ratelimit-remaining-subscription-reads": "11657", - "x-ms-request-id": "66ed75b4-31f5-4b04-9c82-1257e7331e4d", - "x-ms-routing-request-id": "WESTUS2:20210519T185943Z:66ed75b4-31f5-4b04-9c82-1257e7331e4d" + "x-ms-correlation-request-id": "2b566cff-f305-4417-a4ca-fd1989b131a7", + "x-ms-ratelimit-remaining-subscription-reads": "11435", + "x-ms-request-id": "2b566cff-f305-4417-a4ca-fd1989b131a7", + "x-ms-routing-request-id": "WESTUS2:20210616T000517Z:2b566cff-f305-4417-a4ca-fd1989b131a7" }, "ResponseBody": [] }, @@ -9760,7 +9903,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "02476875f596bb68a1dae620398ab614", "x-ms-return-client-request-id": "true" }, @@ -9769,17 +9912,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:43 GMT", + "Date": "Wed, 16 Jun 2021 00:05:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "13c13488-d32d-485d-9d5a-9b66f1fdeb83", - "x-ms-ratelimit-remaining-subscription-reads": "11655", - "x-ms-request-id": "13c13488-d32d-485d-9d5a-9b66f1fdeb83", - "x-ms-routing-request-id": "WESTUS2:20210519T185944Z:13c13488-d32d-485d-9d5a-9b66f1fdeb83" + "x-ms-correlation-request-id": "50160f3a-dd26-47d6-a55a-29411032691c", + "x-ms-ratelimit-remaining-subscription-reads": "11433", + "x-ms-request-id": "50160f3a-dd26-47d6-a55a-29411032691c", + "x-ms-routing-request-id": "WESTUS2:20210616T000518Z:50160f3a-dd26-47d6-a55a-29411032691c" }, "ResponseBody": [] }, @@ -9788,7 +9931,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1f5ca3ab337cfdec736a0e2cf58c58b4", "x-ms-return-client-request-id": "true" }, @@ -9797,17 +9940,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:44 GMT", + "Date": "Wed, 16 Jun 2021 00:05:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "441aa8e1-2a51-44c1-b94d-f22c99b20a77", - "x-ms-ratelimit-remaining-subscription-reads": "11653", - "x-ms-request-id": "441aa8e1-2a51-44c1-b94d-f22c99b20a77", - "x-ms-routing-request-id": "WESTUS2:20210519T185945Z:441aa8e1-2a51-44c1-b94d-f22c99b20a77" + "x-ms-correlation-request-id": "f72bfc67-7949-46cc-ad48-65c324885141", + "x-ms-ratelimit-remaining-subscription-reads": "11431", + "x-ms-request-id": "f72bfc67-7949-46cc-ad48-65c324885141", + "x-ms-routing-request-id": "WESTUS2:20210616T000519Z:f72bfc67-7949-46cc-ad48-65c324885141" }, "ResponseBody": [] }, @@ -9816,7 +9959,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a7d683d68490c019adcb83f6740590b", "x-ms-return-client-request-id": "true" }, @@ -9825,17 +9968,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:45 GMT", + "Date": "Wed, 16 Jun 2021 00:05:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "90ca585f-5c46-4282-baf5-31de317196a6", - "x-ms-ratelimit-remaining-subscription-reads": "11651", - "x-ms-request-id": "90ca585f-5c46-4282-baf5-31de317196a6", - "x-ms-routing-request-id": "WESTUS2:20210519T185946Z:90ca585f-5c46-4282-baf5-31de317196a6" + "x-ms-correlation-request-id": "a10a2e30-778e-4e34-9896-2fd89d4e9377", + "x-ms-ratelimit-remaining-subscription-reads": "11429", + "x-ms-request-id": "a10a2e30-778e-4e34-9896-2fd89d4e9377", + "x-ms-routing-request-id": "WESTUS2:20210616T000520Z:a10a2e30-778e-4e34-9896-2fd89d4e9377" }, "ResponseBody": [] }, @@ -9844,7 +9987,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27ec3fad8e7041817c498f2be73cc515", "x-ms-return-client-request-id": "true" }, @@ -9853,17 +9996,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:46 GMT", + "Date": "Wed, 16 Jun 2021 00:05:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "618452f5-a6c9-4d22-9308-54d268184a84", - "x-ms-ratelimit-remaining-subscription-reads": "11649", - "x-ms-request-id": "618452f5-a6c9-4d22-9308-54d268184a84", - "x-ms-routing-request-id": "WESTUS2:20210519T185947Z:618452f5-a6c9-4d22-9308-54d268184a84" + "x-ms-correlation-request-id": "0213c780-06ee-4177-9056-a5a366c65f30", + "x-ms-ratelimit-remaining-subscription-reads": "11427", + "x-ms-request-id": "0213c780-06ee-4177-9056-a5a366c65f30", + "x-ms-routing-request-id": "WESTUS2:20210616T000521Z:0213c780-06ee-4177-9056-a5a366c65f30" }, "ResponseBody": [] }, @@ -9872,7 +10015,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1e231811b0d42cba24f84a07bad9533", "x-ms-return-client-request-id": "true" }, @@ -9881,17 +10024,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:47 GMT", + "Date": "Wed, 16 Jun 2021 00:05:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "a081ae59-9489-4bb4-92ec-afce988e4b53", - "x-ms-ratelimit-remaining-subscription-reads": "11647", - "x-ms-request-id": "a081ae59-9489-4bb4-92ec-afce988e4b53", - "x-ms-routing-request-id": "WESTUS2:20210519T185948Z:a081ae59-9489-4bb4-92ec-afce988e4b53" + "x-ms-correlation-request-id": "76e75a0f-e419-4552-b49c-3e89540cdd8d", + "x-ms-ratelimit-remaining-subscription-reads": "11425", + "x-ms-request-id": "76e75a0f-e419-4552-b49c-3e89540cdd8d", + "x-ms-routing-request-id": "WESTUS2:20210616T000522Z:76e75a0f-e419-4552-b49c-3e89540cdd8d" }, "ResponseBody": [] }, @@ -9900,7 +10043,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b67f0211319faf44e63b1effd9d6255e", "x-ms-return-client-request-id": "true" }, @@ -9909,17 +10052,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:48 GMT", + "Date": "Wed, 16 Jun 2021 00:05:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2c634c9f-d3d1-4111-a478-f5765e74c450", - "x-ms-ratelimit-remaining-subscription-reads": "11645", - "x-ms-request-id": "2c634c9f-d3d1-4111-a478-f5765e74c450", - "x-ms-routing-request-id": "WESTUS2:20210519T185949Z:2c634c9f-d3d1-4111-a478-f5765e74c450" + "x-ms-correlation-request-id": "9e71ca58-de8a-4ca2-95ba-7f5161252e34", + "x-ms-ratelimit-remaining-subscription-reads": "11423", + "x-ms-request-id": "9e71ca58-de8a-4ca2-95ba-7f5161252e34", + "x-ms-routing-request-id": "WESTUS2:20210616T000523Z:9e71ca58-de8a-4ca2-95ba-7f5161252e34" }, "ResponseBody": [] }, @@ -9928,7 +10071,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36bda216885d91fe74a9852009e1c6cf", "x-ms-return-client-request-id": "true" }, @@ -9937,17 +10080,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:49 GMT", + "Date": "Wed, 16 Jun 2021 00:05:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "e8e80b9c-6bbd-43b3-89ba-523d0ed272d2", - "x-ms-ratelimit-remaining-subscription-reads": "11643", - "x-ms-request-id": "e8e80b9c-6bbd-43b3-89ba-523d0ed272d2", - "x-ms-routing-request-id": "WESTUS2:20210519T185950Z:e8e80b9c-6bbd-43b3-89ba-523d0ed272d2" + "x-ms-correlation-request-id": "4fdc986b-eab7-477e-9dd7-bd21d552c84d", + "x-ms-ratelimit-remaining-subscription-reads": "11421", + "x-ms-request-id": "4fdc986b-eab7-477e-9dd7-bd21d552c84d", + "x-ms-routing-request-id": "WESTUS2:20210616T000524Z:4fdc986b-eab7-477e-9dd7-bd21d552c84d" }, "ResponseBody": [] }, @@ -9956,51 +10099,1676 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e41a5cb30ebc4f75ed33ead1fccb69cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 18:59:50 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:25 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "95893556-16c7-4f0c-93a5-40c3b9fa9ae9", - "x-ms-ratelimit-remaining-subscription-reads": "11641", - "x-ms-request-id": "95893556-16c7-4f0c-93a5-40c3b9fa9ae9", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:95893556-16c7-4f0c-93a5-40c3b9fa9ae9" + "x-ms-correlation-request-id": "f9d33a9c-5b1e-49f0-933a-72d8022c6006", + "x-ms-ratelimit-remaining-subscription-reads": "11419", + "x-ms-request-id": "f9d33a9c-5b1e-49f0-933a-72d8022c6006", + "x-ms-routing-request-id": "WESTUS2:20210616T000525Z:f9d33a9c-5b1e-49f0-933a-72d8022c6006" }, "ResponseBody": [] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421/resources?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d889262a5fef88d504ee42f5ab23a605", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:50 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "841e3854-a982-44e5-9238-f2f8d5bd6b90", + "x-ms-ratelimit-remaining-subscription-reads": "11417", + "x-ms-request-id": "841e3854-a982-44e5-9238-f2f8d5bd6b90", + "x-ms-routing-request-id": "WESTUS2:20210616T000526Z:841e3854-a982-44e5-9238-f2f8d5bd6b90" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d4b4f7540bb07a22c6e482a9e2d94a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3a2884d9-0391-4f2d-bb47-e3103c5c45f4", + "x-ms-ratelimit-remaining-subscription-reads": "11415", + "x-ms-request-id": "3a2884d9-0391-4f2d-bb47-e3103c5c45f4", + "x-ms-routing-request-id": "WESTUS2:20210616T000527Z:3a2884d9-0391-4f2d-bb47-e3103c5c45f4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e2f5b940ed5754e08691e0cecc80a4c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ed99313f-6b0b-4dac-b4eb-f7ff68d0a2bc", + "x-ms-ratelimit-remaining-subscription-reads": "11413", + "x-ms-request-id": "ed99313f-6b0b-4dac-b4eb-f7ff68d0a2bc", + "x-ms-routing-request-id": "WESTUS2:20210616T000528Z:ed99313f-6b0b-4dac-b4eb-f7ff68d0a2bc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ad5be58ceb7fea0f8482ac8117abead6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1bc6d792-7e7c-4a42-9f57-8891ae45ce0b", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "1bc6d792-7e7c-4a42-9f57-8891ae45ce0b", + "x-ms-routing-request-id": "WESTUS2:20210616T000529Z:1bc6d792-7e7c-4a42-9f57-8891ae45ce0b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2b49a59c32d87ad6ff7f72a5fd33bac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "616e0dcf-1b31-4601-9033-2354961baeed", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "616e0dcf-1b31-4601-9033-2354961baeed", + "x-ms-routing-request-id": "WESTUS2:20210616T000530Z:616e0dcf-1b31-4601-9033-2354961baeed" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b89d7ec9e7d15529aa0b5ed5415e3cda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "6ae1f577-b0a1-449c-8c30-8955fcb70605", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "6ae1f577-b0a1-449c-8c30-8955fcb70605", + "x-ms-routing-request-id": "WESTUS2:20210616T000531Z:6ae1f577-b0a1-449c-8c30-8955fcb70605" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32740aa7b2cbc89b37d43d87f3e58ab0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "10203692-6627-4de0-84da-50ebe51c718a", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "10203692-6627-4de0-84da-50ebe51c718a", + "x-ms-routing-request-id": "WESTUS2:20210616T000532Z:10203692-6627-4de0-84da-50ebe51c718a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98b70047310e7205705f482265d74610", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "70dc055c-ed41-4543-9202-d5c36b0d19d9", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "70dc055c-ed41-4543-9202-d5c36b0d19d9", + "x-ms-routing-request-id": "WESTUS2:20210616T000533Z:70dc055c-ed41-4543-9202-d5c36b0d19d9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "55821dba085e17e0e3d481fda9a161c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "1fd29253-bf76-4c28-830f-3fc23668d92a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "1fd29253-bf76-4c28-830f-3fc23668d92a", + "x-ms-routing-request-id": "WESTUS2:20210616T000534Z:1fd29253-bf76-4c28-830f-3fc23668d92a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "418ead81a4a776cc0402c16c69796360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "70563933-17d1-4186-8fb7-e2208fcd32fa", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "70563933-17d1-4186-8fb7-e2208fcd32fa", + "x-ms-routing-request-id": "WESTUS2:20210616T000535Z:70563933-17d1-4186-8fb7-e2208fcd32fa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6cd2d8d34633e511f9fb439b007c8cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "2637b9d4-5160-4d1a-8b55-e096cb67920c", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "2637b9d4-5160-4d1a-8b55-e096cb67920c", + "x-ms-routing-request-id": "WESTUS2:20210616T000536Z:2637b9d4-5160-4d1a-8b55-e096cb67920c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b7a183fd05491668500c505c4773ad69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bf4cb442-54bd-4f07-b2d6-155d830342f2", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "bf4cb442-54bd-4f07-b2d6-155d830342f2", + "x-ms-routing-request-id": "WESTUS2:20210616T000537Z:bf4cb442-54bd-4f07-b2d6-155d830342f2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7c6f20718ad44c615c502108ef93c6fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "8bf8f3c6-b0d8-47ce-ae65-949593b0270c", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "8bf8f3c6-b0d8-47ce-ae65-949593b0270c", + "x-ms-routing-request-id": "WESTUS2:20210616T000538Z:8bf8f3c6-b0d8-47ce-ae65-949593b0270c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e66ff139acd88816c4b68657e4f5f6ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "caca15ca-089e-4423-b683-e454a2e05b07", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "caca15ca-089e-4423-b683-e454a2e05b07", + "x-ms-routing-request-id": "WESTUS2:20210616T000540Z:caca15ca-089e-4423-b683-e454a2e05b07" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fc74bf14c9772fb22555af9e36026bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "b10a6c77-b7ed-4397-9629-06f991426037", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "b10a6c77-b7ed-4397-9629-06f991426037", + "x-ms-routing-request-id": "WESTUS2:20210616T000541Z:b10a6c77-b7ed-4397-9629-06f991426037" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "56225346c704c5910ae7b81d040a6767", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "3523ce17-c7a8-49fa-a2ef-1fd7b7cc94e0", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "3523ce17-c7a8-49fa-a2ef-1fd7b7cc94e0", + "x-ms-routing-request-id": "WESTUS2:20210616T000542Z:3523ce17-c7a8-49fa-a2ef-1fd7b7cc94e0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a416755936cbed65f5fcc482511da563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "438dfa30-5224-4926-aa85-0e3a1eaae224", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "438dfa30-5224-4926-aa85-0e3a1eaae224", + "x-ms-routing-request-id": "WESTUS2:20210616T000543Z:438dfa30-5224-4926-aa85-0e3a1eaae224" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9010c890a0d22aa8b90285b093de6d18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "0318196b-325d-45cc-9254-c119b955ac8b", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "0318196b-325d-45cc-9254-c119b955ac8b", + "x-ms-routing-request-id": "WESTUS2:20210616T000544Z:0318196b-325d-45cc-9254-c119b955ac8b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6e9ff3ed81490ff1ee346007030e73ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ac3b70da-8725-4851-831f-1cf3e7092330", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "ac3b70da-8725-4851-831f-1cf3e7092330", + "x-ms-routing-request-id": "WESTUS2:20210616T000545Z:ac3b70da-8725-4851-831f-1cf3e7092330" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3c8c5442d7f9b994ccecebc8b1b45a17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "103c4fb7-1052-4274-8d76-e99d4055bdcf", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "103c4fb7-1052-4274-8d76-e99d4055bdcf", + "x-ms-routing-request-id": "WESTUS2:20210616T000546Z:103c4fb7-1052-4274-8d76-e99d4055bdcf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5d95ab8f367e0e1ad601a29d3fa126aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "32b3512c-3f7c-4f65-a858-9c3d10356d76", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "32b3512c-3f7c-4f65-a858-9c3d10356d76", + "x-ms-routing-request-id": "WESTUS2:20210616T000547Z:32b3512c-3f7c-4f65-a858-9c3d10356d76" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3e6e998e3151151e5ee5a15c96295d39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "78604515-6a40-4143-a713-51164745f926", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "78604515-6a40-4143-a713-51164745f926", + "x-ms-routing-request-id": "WESTUS2:20210616T000548Z:78604515-6a40-4143-a713-51164745f926" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "577749da16790b6d3a7d65f734f77a2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "70596e05-c9ac-4a7e-b622-01e0f636d9cb", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "70596e05-c9ac-4a7e-b622-01e0f636d9cb", + "x-ms-routing-request-id": "WESTUS2:20210616T000549Z:70596e05-c9ac-4a7e-b622-01e0f636d9cb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "183941c61b455dc58d7ffe9994bd78ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dec9dc8e-c24b-4c8e-8880-995d7163a6cf", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "dec9dc8e-c24b-4c8e-8880-995d7163a6cf", + "x-ms-routing-request-id": "WESTUS2:20210616T000550Z:dec9dc8e-c24b-4c8e-8880-995d7163a6cf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f6c268a3cf2978312b6304d4cc27e067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "793bdcb2-d19c-4f61-b31c-753cb45b7b9a", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "793bdcb2-d19c-4f61-b31c-753cb45b7b9a", + "x-ms-routing-request-id": "WESTUS2:20210616T000551Z:793bdcb2-d19c-4f61-b31c-753cb45b7b9a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5596766a45efbff3831acaf917d4777d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "552e5c40-d836-49a6-95c2-0c1627c139b3", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "552e5c40-d836-49a6-95c2-0c1627c139b3", + "x-ms-routing-request-id": "WESTUS2:20210616T000552Z:552e5c40-d836-49a6-95c2-0c1627c139b3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc54b7058434f6010fc1ece216f09166", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d2c09692-428c-4908-94af-5b58012960c4", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "d2c09692-428c-4908-94af-5b58012960c4", + "x-ms-routing-request-id": "WESTUS2:20210616T000553Z:d2c09692-428c-4908-94af-5b58012960c4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d2e969e23265ebe7403720f04376057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d6a7a919-8e57-41c3-ac88-38440110c07c", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "d6a7a919-8e57-41c3-ac88-38440110c07c", + "x-ms-routing-request-id": "WESTUS2:20210616T000554Z:d6a7a919-8e57-41c3-ac88-38440110c07c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "14cf86eb14d2e633749f452d5811a892", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "67a51abb-09ee-4661-ac85-51c0628b0966", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "67a51abb-09ee-4661-ac85-51c0628b0966", + "x-ms-routing-request-id": "WESTUS2:20210616T000555Z:67a51abb-09ee-4661-ac85-51c0628b0966" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "815a648859a5e156f9f5573111f2f1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9d36d25f-9ad6-4bdb-9e88-dae5e41b3e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "9d36d25f-9ad6-4bdb-9e88-dae5e41b3e5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000556Z:9d36d25f-9ad6-4bdb-9e88-dae5e41b3e5e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ff695617d2189936348a886de900563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "5ce972b5-c146-4dec-9e05-38877e98082c", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "5ce972b5-c146-4dec-9e05-38877e98082c", + "x-ms-routing-request-id": "WESTUS2:20210616T000557Z:5ce972b5-c146-4dec-9e05-38877e98082c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a087df5adfdd92b22fed1addbd02d482", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9d05a3fa-fbaf-4102-b9c3-b3f382b460b0", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "9d05a3fa-fbaf-4102-b9c3-b3f382b460b0", + "x-ms-routing-request-id": "WESTUS2:20210616T000558Z:9d05a3fa-fbaf-4102-b9c3-b3f382b460b0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3cc6cae181a0a71d0d01d5db0d00369", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:05:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "867b9183-d294-459d-9829-65a478e30a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "867b9183-d294-459d-9829-65a478e30a6b", + "x-ms-routing-request-id": "WESTUS2:20210616T000559Z:867b9183-d294-459d-9829-65a478e30a6b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32d6f3f0516b81fbe364603362b6cc61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d74ac86f-031d-42b0-8838-f3dc1032ea5d", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "d74ac86f-031d-42b0-8838-f3dc1032ea5d", + "x-ms-routing-request-id": "WESTUS2:20210616T000600Z:d74ac86f-031d-42b0-8838-f3dc1032ea5d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71d8267342c341496e7ccf0cc154e15f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "92959cb0-f457-47f1-8dae-5bc671af4e47", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "92959cb0-f457-47f1-8dae-5bc671af4e47", + "x-ms-routing-request-id": "WESTUS2:20210616T000601Z:92959cb0-f457-47f1-8dae-5bc671af4e47" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "caecb1eaa22b5d17714bdfb6b83da81a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9c5aef94-63d5-46db-8a17-cfd1c04f6c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "9c5aef94-63d5-46db-8a17-cfd1c04f6c2b", + "x-ms-routing-request-id": "WESTUS2:20210616T000602Z:9c5aef94-63d5-46db-8a17-cfd1c04f6c2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "89eabc0492f8ada5aa94c3ee81eebf8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "dbdb67cc-38cb-4ec4-a316-360aac76b4bd", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "dbdb67cc-38cb-4ec4-a316-360aac76b4bd", + "x-ms-routing-request-id": "WESTUS2:20210616T000603Z:dbdb67cc-38cb-4ec4-a316-360aac76b4bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b149008202c9d0350f7bff7862928831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "35357726-9640-48cc-be56-80a0b79d3d99", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "35357726-9640-48cc-be56-80a0b79d3d99", + "x-ms-routing-request-id": "WESTUS2:20210616T000604Z:35357726-9640-48cc-be56-80a0b79d3d99" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0408b5d4576a57670c3e1f96de28db83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "d3dd15c5-ba67-4eb2-ab52-81d52c0ddeb0", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "d3dd15c5-ba67-4eb2-ab52-81d52c0ddeb0", + "x-ms-routing-request-id": "WESTUS2:20210616T000605Z:d3dd15c5-ba67-4eb2-ab52-81d52c0ddeb0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b834518bf6f3015187197a7c932c4a17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "665f5dd2-0d76-42cd-b874-98a4856ae8a6", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "665f5dd2-0d76-42cd-b874-98a4856ae8a6", + "x-ms-routing-request-id": "WESTUS2:20210616T000606Z:665f5dd2-0d76-42cd-b874-98a4856ae8a6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cc1a920bbae52a2399f1a48ae29ef1e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "113a1435-b15e-4517-8416-2feb2643354a", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "113a1435-b15e-4517-8416-2feb2643354a", + "x-ms-routing-request-id": "WESTUS2:20210616T000607Z:113a1435-b15e-4517-8416-2feb2643354a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11ed7b9fd05edd3d63067d51ddeac4df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "208aa407-1351-4381-9cef-15d10726d748", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "208aa407-1351-4381-9cef-15d10726d748", + "x-ms-routing-request-id": "WESTUS2:20210616T000608Z:208aa407-1351-4381-9cef-15d10726d748" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4c8a07f30f0dd09d2d091e0151c61fe8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "05410e0c-82af-47c6-8c2c-7ec2e99c85b7", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "05410e0c-82af-47c6-8c2c-7ec2e99c85b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000610Z:05410e0c-82af-47c6-8c2c-7ec2e99c85b7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17dd9328393f3bb9553d68df3dd24cae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "c420202f-fa48-4148-a01f-f199aa692747", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "c420202f-fa48-4148-a01f-f199aa692747", + "x-ms-routing-request-id": "WESTUS2:20210616T000611Z:c420202f-fa48-4148-a01f-f199aa692747" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "da96c52ca5138fd9dd1ce454b13b8b9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "db5407c5-7ee9-4eb9-a8e1-f4c77eb959e0", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "db5407c5-7ee9-4eb9-a8e1-f4c77eb959e0", + "x-ms-routing-request-id": "WESTUS2:20210616T000612Z:db5407c5-7ee9-4eb9-a8e1-f4c77eb959e0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a2894e7ad0dba9f4e4ff6d0a7be925a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "98501648-b3a7-428d-9661-cbeab2c0529e", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "98501648-b3a7-428d-9661-cbeab2c0529e", + "x-ms-routing-request-id": "WESTUS2:20210616T000613Z:98501648-b3a7-428d-9661-cbeab2c0529e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8cd470bd443082d4b94d392254648919", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bf7bce2f-a72b-47e2-9d7f-05b542fc464f", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "bf7bce2f-a72b-47e2-9d7f-05b542fc464f", + "x-ms-routing-request-id": "WESTUS2:20210616T000614Z:bf7bce2f-a72b-47e2-9d7f-05b542fc464f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8f7cbb102a97fa125db8bc4ae09e81e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "bc6caf69-05f2-4667-ac98-2a926a898893", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "bc6caf69-05f2-4667-ac98-2a926a898893", + "x-ms-routing-request-id": "WESTUS2:20210616T000615Z:bc6caf69-05f2-4667-ac98-2a926a898893" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4197898aff66a26cbfa690bf737d66ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7589d9c6-2a20-420f-9e40-d2a88ae1a799", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "7589d9c6-2a20-420f-9e40-d2a88ae1a799", + "x-ms-routing-request-id": "WESTUS2:20210616T000616Z:7589d9c6-2a20-420f-9e40-d2a88ae1a799" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db1fddc6eac6bab1cf556654b810d4b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "68344b58-54a2-408b-89d6-2e72b5ea81aa", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "68344b58-54a2-408b-89d6-2e72b5ea81aa", + "x-ms-routing-request-id": "WESTUS2:20210616T000617Z:68344b58-54a2-408b-89d6-2e72b5ea81aa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ca981a6547ccb1b25f55e80371e10ba8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "ddf95381-52a3-4aed-9f0c-3d361db628bd", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "ddf95381-52a3-4aed-9f0c-3d361db628bd", + "x-ms-routing-request-id": "WESTUS2:20210616T000618Z:ddf95381-52a3-4aed-9f0c-3d361db628bd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d0fda1750ceaa058d8dd71119817e9af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "712019a0-63f9-4b09-9458-3720e8ab15c9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "712019a0-63f9-4b09-9458-3720e8ab15c9", + "x-ms-routing-request-id": "WESTUS2:20210616T000619Z:712019a0-63f9-4b09-9458-3720e8ab15c9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "585ae0d19be47e1d2b6d7b7101ad48ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "7cc575f7-6c54-49c9-bd9d-c7d382c30953", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "7cc575f7-6c54-49c9-bd9d-c7d382c30953", + "x-ms-routing-request-id": "WESTUS2:20210616T000620Z:7cc575f7-6c54-49c9-bd9d-c7d382c30953" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17debe49031258c5c2f8f2efd6a01947", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "9500e635-4cd0-425d-a261-5a23dd3146c1", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "9500e635-4cd0-425d-a261-5a23dd3146c1", + "x-ms-routing-request-id": "WESTUS2:20210616T000621Z:9500e635-4cd0-425d-a261-5a23dd3146c1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9131396bb387dac3837fa57d90e69e2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "995546ac-60df-4234-a653-a01989d75b72", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "995546ac-60df-4234-a653-a01989d75b72", + "x-ms-routing-request-id": "WESTUS2:20210616T000622Z:995546ac-60df-4234-a653-a01989d75b72" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dac78394d239cd9c1a0196eca92ea88a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "f7657cbf-7d0a-4ce4-ad64-64816e06127c", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "f7657cbf-7d0a-4ce4-ad64-64816e06127c", + "x-ms-routing-request-id": "WESTUS2:20210616T000623Z:f7657cbf-7d0a-4ce4-ad64-64816e06127c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c7063454b77b9666fa0493935e48c7db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:06:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?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": "92da02be-1c2a-4386-9ece-35b6246cbd18", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "92da02be-1c2a-4386-9ece-35b6246cbd18", + "x-ms-routing-request-id": "WESTUS2:20210616T000624Z:92da02be-1c2a-4386-9ece-35b6246cbd18" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg0MjEtV0VTVFVTMi1NT1ZFIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "525bc7593ed9980e9d6376861dd73155", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:06:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9ce1e3a8-7cc3-47e5-bd90-dde4ffdc9827", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "9ce1e3a8-7cc3-47e5-bd90-dde4ffdc9827", + "x-ms-routing-request-id": "WESTUS2:20210616T000625Z:9ce1e3a8-7cc3-47e5-bd90-dde4ffdc9827" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8421/resources?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c291bd6d7e0ddae1c31e0343f086fd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 16 Jun 2021 00:06:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "424797f4-ba40-4db9-9eec-55666d7b14bc", - "x-ms-ratelimit-remaining-subscription-reads": "11640", - "x-ms-request-id": "424797f4-ba40-4db9-9eec-55666d7b14bc", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:424797f4-ba40-4db9-9eec-55666d7b14bc" + "x-ms-correlation-request-id": "6d8406c9-60d7-401c-829d-b36c241b9bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "6d8406c9-60d7-401c-829d-b36c241b9bbd", + "x-ms-routing-request-id": "WESTUS2:20210616T000625Z:6d8406c9-60d7-401c-829d-b36c241b9bbd" }, "ResponseBody": { "value": [] @@ -10012,8 +11780,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7d4b4f7540bb07a22c6e482a9e2d94a8", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e192ba3955d315b0256d2a1840e07923", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -10022,15 +11790,15 @@ "Cache-Control": "no-cache", "Content-Length": "278", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:50 GMT", + "Date": "Wed, 16 Jun 2021 00:06:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bafbf5e-fa43-45ef-86b6-5d3329005e8a", - "x-ms-ratelimit-remaining-subscription-reads": "11639", - "x-ms-request-id": "1bafbf5e-fa43-45ef-86b6-5d3329005e8a", - "x-ms-routing-request-id": "WESTUS2:20210519T185951Z:1bafbf5e-fa43-45ef-86b6-5d3329005e8a" + "x-ms-correlation-request-id": "87bdae79-4d04-4c4c-8bb5-42e65c969b8c", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "87bdae79-4d04-4c4c-8bb5-42e65c969b8c", + "x-ms-routing-request-id": "WESTUS2:20210616T000625Z:87bdae79-4d04-4c4c-8bb5-42e65c969b8c" }, "ResponseBody": { "value": [ diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json index a34b98feff1f..69aa8a8a632e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag().json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2c-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-a68a5f0a4daaa946874d1b0162e65a35-5d0088f6ddb8784a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5e5feb5399cc0d53ed90c001f71c2e1b", "x-ms-return-client-request-id": "true" }, @@ -15,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:52 GMT", + "Date": "Wed, 16 Jun 2021 00:06:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb4c0670-5e21-4ec6-a87a-49642ff6ec7f", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "eb4c0670-5e21-4ec6-a87a-49642ff6ec7f", - "x-ms-routing-request-id": "WESTUS2:20210519T185952Z:eb4c0670-5e21-4ec6-a87a-49642ff6ec7f" + "x-ms-correlation-request-id": "cad4e33f-f170-49a6-8296-be4776a48557", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "cad4e33f-f170-49a6-8296-be4776a48557", + "x-ms-routing-request-id": "WESTUS2:20210616T000628Z:cad4e33f-f170-49a6-8296-be4776a48557" }, "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", @@ -50,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-d960cebb02945c4c875e8cfd8e78b412-2c78bc1fe016244a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5455f97d1a00e24bb1f4ed96b912ce55-41b486872ca56946-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "664b5cc708737037afcbbbab9f76f099", "x-ms-return-client-request-id": "true" }, @@ -64,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:52 GMT", + "Date": "Wed, 16 Jun 2021 00:06:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "222e4b0c-4d17-4b60-a100-eb7215d5c14a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "222e4b0c-4d17-4b60-a100-eb7215d5c14a", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:222e4b0c-4d17-4b60-a100-eb7215d5c14a" + "x-ms-correlation-request-id": "bda14b3a-f728-4193-9b64-972df95d4443", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bda14b3a-f728-4193-9b64-972df95d4443", + "x-ms-routing-request-id": "WESTUS2:20210616T000629Z:bda14b3a-f728-4193-9b64-972df95d4443" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", @@ -93,8 +97,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-e69916b712e5a54391c3455d20cfc5fd-dc658300b88d0646-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f7aeaadc8a30704e91c21069375c973e-d8b77a2351e92648-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0fb22512a483d6e42254ef8d6c681ff3", "x-ms-return-client-request-id": "true" }, @@ -109,15 +113,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9b22be6-abb7-4609-b214-9d8cfeaa2e61", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "b9b22be6-abb7-4609-b214-9d8cfeaa2e61", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:b9b22be6-abb7-4609-b214-9d8cfeaa2e61" + "x-ms-correlation-request-id": "d9dd293d-053a-401d-b0b9-bb19b78ad664", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "d9dd293d-053a-401d-b0b9-bb19b78ad664", + "x-ms-routing-request-id": "WESTUS2:20210616T000629Z:d9dd293d-053a-401d-b0b9-bb19b78ad664" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", @@ -141,8 +145,8 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "traceparent": "00-28173523b99a534e8805217219e0ae01-5ba8c5e1f1e2fd46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-32862d54578c0c4a96d86673c3dd028d-42301486b4584e4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f4bd0125f06e3e027ee1cce98614e19", "x-ms-return-client-request-id": "true" }, @@ -156,15 +160,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67a684ce-ff96-44f3-8a89-dfae79c868ac", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "67a684ce-ff96-44f3-8a89-dfae79c868ac", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:67a684ce-ff96-44f3-8a89-dfae79c868ac" + "x-ms-correlation-request-id": "140d5395-e016-4b28-8315-bfdb0c3ecba0", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "140d5395-e016-4b28-8315-bfdb0c3ecba0", + "x-ms-routing-request-id": "WESTUS2:20210616T000630Z:140d5395-e016-4b28-8315-bfdb0c3ecba0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9147", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json index eb1690ff2c78..d44d528ab63d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartRemoveTag()Async.json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23ec2a97aa2daf0f84dc98668a466d3f", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:51 GMT", + "Date": "Wed, 16 Jun 2021 00:06:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "886c14d6-5c79-4e1d-9510-e98a8c625457", - "x-ms-ratelimit-remaining-subscription-reads": "11634", - "x-ms-request-id": "886c14d6-5c79-4e1d-9510-e98a8c625457", - "x-ms-routing-request-id": "WESTUS2:20210519T185952Z:886c14d6-5c79-4e1d-9510-e98a8c625457" + "x-ms-correlation-request-id": "9042a1d5-f1a1-435f-bc69-82fa84c778db", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "9042a1d5-f1a1-435f-bc69-82fa84c778db", + "x-ms-routing-request-id": "WESTUS2:20210616T000626Z:9042a1d5-f1a1-435f-bc69-82fa84c778db" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f04ab08933737e42a7d657124e6836c7-651f79eb158af241-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e8ae603f3c23d04c9815b6d358d83461-005b19d410b88041-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f71698854715d925f7ef394c9033fc77", "x-ms-return-client-request-id": "true" }, @@ -63,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:52 GMT", + "Date": "Wed, 16 Jun 2021 00:06:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2abf619d-e795-4072-a705-ae2321e8d4eb", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "2abf619d-e795-4072-a705-ae2321e8d4eb", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:2abf619d-e795-4072-a705-ae2321e8d4eb" + "x-ms-correlation-request-id": "50d6d665-a49a-445b-abb1-64038fd79edb", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "50d6d665-a49a-445b-abb1-64038fd79edb", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:50d6d665-a49a-445b-abb1-64038fd79edb" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "30", "Content-Type": "application/json", - "traceparent": "00-eaa7a04830a21541889282fb268e55f6-973a0b9a0f113e43-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-1a31824f478e5d42bf21ca21324e40ed-e33a05d61024484f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa1625b397b197d6b5c6d2016a2be3a8", "x-ms-return-client-request-id": "true" }, @@ -108,15 +112,15 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:52 GMT", + "Date": "Wed, 16 Jun 2021 00:06:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b001328-7486-4a13-89d9-0b0f5d8eeddc", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "8b001328-7486-4a13-89d9-0b0f5d8eeddc", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:8b001328-7486-4a13-89d9-0b0f5d8eeddc" + "x-ms-correlation-request-id": "77cc0e56-68bf-4b2e-aaf9-52248ed2b40d", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "77cc0e56-68bf-4b2e-aaf9-52248ed2b40d", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:77cc0e56-68bf-4b2e-aaf9-52248ed2b40d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", @@ -140,8 +144,8 @@ "Authorization": "Sanitized", "Content-Length": "20", "Content-Type": "application/json", - "traceparent": "00-bef8f9d81fe9594c84de77600100ab1d-5370f130d634ff4f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-2871017e12691a42b1c9643d66082121-dab3e4ea5d58c74c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69609e9d7b74e281c74936bbd562f3a9", "x-ms-return-client-request-id": "true" }, @@ -155,15 +159,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "515bf2e6-df49-45f3-a341-eaa4f28c87dc", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "515bf2e6-df49-45f3-a341-eaa4f28c87dc", - "x-ms-routing-request-id": "WESTUS2:20210519T185953Z:515bf2e6-df49-45f3-a341-eaa4f28c87dc" + "x-ms-correlation-request-id": "fdcf3e74-248b-457c-8e1b-196d946a780b", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "fdcf3e74-248b-457c-8e1b-196d946a780b", + "x-ms-routing-request-id": "WESTUS2:20210616T000627Z:fdcf3e74-248b-457c-8e1b-196d946a780b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6323", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json index ea1f4596c81f..836d11933797 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags().json @@ -6,7 +6,8 @@ "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.19043 )", + "Request-Id": "|281dd4e9-411af037d68e2542.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "302c97a23183464d6f9500d0bd465799", "x-ms-return-client-request-id": "true" }, @@ -14,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "091c60cc-234c-433a-bd7e-b94bb4da6bc8", - "x-ms-ratelimit-remaining-subscription-reads": "11631", - "x-ms-request-id": "091c60cc-234c-433a-bd7e-b94bb4da6bc8", - "x-ms-routing-request-id": "WESTUS2:20210519T185954Z:091c60cc-234c-433a-bd7e-b94bb4da6bc8" + "x-ms-correlation-request-id": "b90741ed-4c32-499b-b9c1-d9bc86a091de", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "b90741ed-4c32-499b-b9c1-d9bc86a091de", + "x-ms-routing-request-id": "WESTUS2:20210616T000631Z:b90741ed-4c32-499b-b9c1-d9bc86a091de" }, "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", @@ -49,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3d43e3416278664798f3cc65e4bfc757-731604ceb9d01b48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-42b8b78360916b4f8a5e36aa895523fa-795a5dd3aa1e8544-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86b4681c3c4def3045b1c87641a3416b", "x-ms-return-client-request-id": "true" }, @@ -63,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:54 GMT", + "Date": "Wed, 16 Jun 2021 00:06:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "faadbbf9-ebf9-4745-825f-5481fec4e149", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "faadbbf9-ebf9-4745-825f-5481fec4e149", - "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:faadbbf9-ebf9-4745-825f-5481fec4e149" + "x-ms-correlation-request-id": "7fc3c53b-6c7f-4392-8bef-edb0ec8054f7", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "7fc3c53b-6c7f-4392-8bef-edb0ec8054f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000632Z:7fc3c53b-6c7f-4392-8bef-edb0ec8054f7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", @@ -92,8 +97,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-79024ac0f7b0224cbbd9fcfb47c697e1-9e63ef990fa99646-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-0f7850f36f6dc946a1ba39bb82db1031-c01d08d713dd734a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dd69ae84298ff4e49bac24223c840cc0", "x-ms-return-client-request-id": "true" }, @@ -107,15 +112,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:55 GMT", + "Date": "Wed, 16 Jun 2021 00:06:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c8eb946-d801-4d55-bed7-a2f901e62ccd", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "3c8eb946-d801-4d55-bed7-a2f901e62ccd", - "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:3c8eb946-d801-4d55-bed7-a2f901e62ccd" + "x-ms-correlation-request-id": "c6ba8721-c3a1-4e77-acdf-77f9e8864444", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "c6ba8721-c3a1-4e77-acdf-77f9e8864444", + "x-ms-routing-request-id": "WESTUS2:20210616T000632Z:c6ba8721-c3a1-4e77-acdf-77f9e8864444" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8661", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json index 5e209fedbfa4..c4d7d264667d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartSetTags()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2d-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "72342836e7375ffba1980cc764257df9", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:54 GMT", + "Date": "Wed, 16 Jun 2021 00:06:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce23680f-8067-4c8b-9b40-60e56450806b", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "ce23680f-8067-4c8b-9b40-60e56450806b", - "x-ms-routing-request-id": "WESTUS2:20210519T185954Z:ce23680f-8067-4c8b-9b40-60e56450806b" + "x-ms-correlation-request-id": "50ab0fd0-5833-47d8-8c82-0a7f0ced77d6", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "50ab0fd0-5833-47d8-8c82-0a7f0ced77d6", + "x-ms-routing-request-id": "WESTUS2:20210616T000628Z:50ab0fd0-5833-47d8-8c82-0a7f0ced77d6" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b3bde1dee0826043aa165d0e8f9afc0f-466599b926fd304a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4bd7f8a38021c7408912172ac2d3caac-5c8101538b086b46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2d0eea28a6a3efc8e850d4a9ca96ee5", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:54 GMT", + "Date": "Wed, 16 Jun 2021 00:06:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8bd183d-48a4-4cef-8f03-07dee68995f2", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "e8bd183d-48a4-4cef-8f03-07dee68995f2", - "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:e8bd183d-48a4-4cef-8f03-07dee68995f2" + "x-ms-correlation-request-id": "fa842b32-1808-44dc-a14d-4d2cd4123db2", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "fa842b32-1808-44dc-a14d-4d2cd4123db2", + "x-ms-routing-request-id": "WESTUS2:20210616T000628Z:fa842b32-1808-44dc-a14d-4d2cd4123db2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "24", "Content-Type": "application/json", - "traceparent": "00-f23f089a1bf1a2438521e826522b75e1-2b8bd3d021bac048-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-f68784c1df044d489f49577ed581f6ce-246a6c40fc2ced47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afde8377006bef0be701424fd4081ce3", "x-ms-return-client-request-id": "true" }, @@ -108,15 +111,15 @@ "Cache-Control": "no-cache", "Content-Length": "241", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:55 GMT", + "Date": "Wed, 16 Jun 2021 00:06:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "143ddd0d-0428-4a55-b0ba-6f2f772d1528", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "143ddd0d-0428-4a55-b0ba-6f2f772d1528", - "x-ms-routing-request-id": "WESTUS2:20210519T185955Z:143ddd0d-0428-4a55-b0ba-6f2f772d1528" + "x-ms-correlation-request-id": "465e04da-094b-4e18-aa77-96da330b00e0", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "465e04da-094b-4e18-aa77-96da330b00e0", + "x-ms-routing-request-id": "WESTUS2:20210616T000629Z:465e04da-094b-4e18-aa77-96da330b00e0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9531", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json index c0e1a45c846a..6753425d915e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources().json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2e-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "453b2680c717a3bccbf12e963815eea3", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:56 GMT", + "Date": "Wed, 16 Jun 2021 00:21:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abb1caad-2623-4f4c-8898-3ac3c2c1f706", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "abb1caad-2623-4f4c-8898-3ac3c2c1f706", - "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:abb1caad-2623-4f4c-8898-3ac3c2c1f706" + "x-ms-correlation-request-id": "4ef2cb23-a4c4-4aec-a985-83c9f0027d3a", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "4ef2cb23-a4c4-4aec-a985-83c9f0027d3a", + "x-ms-routing-request-id": "WESTUS2:20210616T002150Z:4ef2cb23-a4c4-4aec-a985-83c9f0027d3a" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-d9f7a99f9bf9e447af2d07f9d6290fc9-3ea2403388171e49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-d87ea683c3f33446be0d6e362ce83a91-ee1da48f2375ce45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9cb2cf95062fa547d6a9407a8a870488", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:56 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bee77f4b-5fe6-4729-a727-d1e9bf4e5c80", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "bee77f4b-5fe6-4729-a727-d1e9bf4e5c80", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:bee77f4b-5fe6-4729-a727-d1e9bf4e5c80" + "x-ms-correlation-request-id": "bcd3baca-d2fb-42ce-8bd9-7dec0d37e046", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bcd3baca-d2fb-42ce-8bd9-7dec0d37e046", + "x-ms-routing-request-id": "WESTUS2:20210616T002151Z:bcd3baca-d2fb-42ce-8bd9-7dec0d37e046" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8712", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-30160b6ed7089e4684372aacc9e72c7b-6246cb193552b34f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-7a3c08601608824ebde125bc8c058454-987638b3196eeb41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "241c4b5d58b1c4d18aedd52455da3bf8", "x-ms-return-client-request-id": "true" }, @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "441f0315-bd4b-4228-b9d1-e8df81e0f535", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "441f0315-bd4b-4228-b9d1-e8df81e0f535", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:441f0315-bd4b-4228-b9d1-e8df81e0f535" + "x-ms-correlation-request-id": "a8b28e5f-0a54-406d-bdd4-4c4acf63862f", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a8b28e5f-0a54-406d-bdd4-4c4acf63862f", + "x-ms-routing-request-id": "WESTUS2:20210616T002152Z:a8b28e5f-0a54-406d-bdd4-4c4acf63862f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7256", @@ -142,17 +145,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4bfe77f0-4742-4ece-b9b4-bfec4425fa40", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "4bfe77f0-4742-4ece-b9b4-bfec4425fa40", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:4bfe77f0-4742-4ece-b9b4-bfec4425fa40" + "x-ms-correlation-request-id": "354da7e4-913a-4bd6-9409-c12e2271fc05", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "354da7e4-913a-4bd6-9409-c12e2271fc05", + "x-ms-routing-request-id": "WESTUS2:20210616T002152Z:354da7e4-913a-4bd6-9409-c12e2271fc05" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -232,9 +235,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -305,9 +310,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -473,6 +480,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -520,9 +535,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -593,9 +610,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -762,6 +781,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -809,9 +836,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -883,9 +912,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -957,9 +988,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1030,9 +1063,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1105,9 +1140,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1180,9 +1217,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1211,6 +1250,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1266,9 +1306,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1339,9 +1381,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1411,9 +1455,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1474,9 +1520,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1546,9 +1594,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1611,9 +1661,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1676,9 +1728,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1749,9 +1803,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1814,7 +1870,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1857,9 +1914,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1911,9 +1970,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1964,9 +2025,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2016,9 +2079,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2063,6 +2128,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2106,9 +2172,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2152,9 +2220,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2198,9 +2268,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2384,9 +2456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2432,9 +2506,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2480,9 +2556,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2528,9 +2606,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2576,9 +2656,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2624,9 +2706,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2784,6 +2868,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2831,9 +2923,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2896,9 +2990,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2960,9 +3056,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3009,9 +3107,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3056,7 +3156,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3196,6 +3297,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3243,7 +3352,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3288,7 +3398,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3333,7 +3444,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3377,7 +3489,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3421,7 +3534,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3465,7 +3579,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3509,7 +3624,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3553,7 +3669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3597,9 +3714,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3663,9 +3782,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3715,9 +3836,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3860,6 +3983,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3907,9 +4038,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4052,6 +4185,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4069,14 +4210,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8712/providers/Microsoft.Compute/availabilitySets/test-aset5249?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8712/providers/Microsoft.Compute/availabilitySets/test-aset5249?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "86a2b8a2e463e077d7a418728080ce04", "x-ms-return-client-request-id": "true" }, @@ -4096,7 +4237,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4106,11 +4247,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "86a2b8a2e463e077d7a418728080ce04", - "x-ms-correlation-request-id": "84c10c44-1111-4949-a683-0fc8f31d4f5c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1194", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "c0e6d4f4-2972-4fff-ba33-327c64004991", - "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:84c10c44-1111-4949-a683-0fc8f31d4f5c" + "x-ms-correlation-request-id": "c5549178-3ffb-4300-8a8b-f666126d116b", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1062", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "46889ef3-bb8a-4d48-a364-5d7aa8505135", + "x-ms-routing-request-id": "WESTUS2:20210616T002153Z:c5549178-3ffb-4300-8a8b-f666126d116b" }, "ResponseBody": [ "{\r\n", @@ -4137,8 +4278,8 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "traceparent": "00-6f0e6e8110370e47a0996715684ac624-1481e16daa36bd4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b26f9dfc71d6e14f9ec5bfd09a45be27-91fa18e9995a0e43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22b217ab719852748a282aac07801fc0", "x-ms-return-client-request-id": "true" }, @@ -4152,17 +4293,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5", - "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:51a0a4b7-00a3-4006-8d3f-6f91bfc9cdf5" + "x-ms-correlation-request-id": "8d4c986f-6466-49cd-8c8b-c560d898f387", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "8d4c986f-6466-49cd-8c8b-c560d898f387", + "x-ms-routing-request-id": "WESTUS2:20210616T002153Z:8d4c986f-6466-49cd-8c8b-c560d898f387" }, "ResponseBody": [] }, @@ -4171,7 +4312,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69c6945baccd106c3dfe7757686024a8", "x-ms-return-client-request-id": "true" }, @@ -4180,17 +4321,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c6f0590c-72e4-4779-ad62-2766cb3635e2", - "x-ms-ratelimit-remaining-subscription-reads": "11625", - "x-ms-request-id": "c6f0590c-72e4-4779-ad62-2766cb3635e2", - "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:c6f0590c-72e4-4779-ad62-2766cb3635e2" + "x-ms-correlation-request-id": "b939fe3a-7f99-4a29-ba16-fa35a83c824f", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "b939fe3a-7f99-4a29-ba16-fa35a83c824f", + "x-ms-routing-request-id": "WESTUS2:20210616T002153Z:b939fe3a-7f99-4a29-ba16-fa35a83c824f" }, "ResponseBody": [] }, @@ -4199,7 +4340,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ddeaaf65b9f5846989a277211495dd4d", "x-ms-return-client-request-id": "true" }, @@ -4208,17 +4349,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:58 GMT", + "Date": "Wed, 16 Jun 2021 00:21:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2be6565f-63bd-4a3d-9ce5-a844b9968830", - "x-ms-ratelimit-remaining-subscription-reads": "11623", - "x-ms-request-id": "2be6565f-63bd-4a3d-9ce5-a844b9968830", - "x-ms-routing-request-id": "WESTUS2:20210519T185959Z:2be6565f-63bd-4a3d-9ce5-a844b9968830" + "x-ms-correlation-request-id": "a4c38d4f-e190-4214-9378-42e614bc03f0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "a4c38d4f-e190-4214-9378-42e614bc03f0", + "x-ms-routing-request-id": "WESTUS2:20210616T002154Z:a4c38d4f-e190-4214-9378-42e614bc03f0" }, "ResponseBody": [] }, @@ -4227,7 +4368,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7250ee9cb5baa3f20b95521aaf36a74a", "x-ms-return-client-request-id": "true" }, @@ -4236,17 +4377,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:59 GMT", + "Date": "Wed, 16 Jun 2021 00:21:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2d524ac8-8ed9-4911-afdf-305db347380a", - "x-ms-ratelimit-remaining-subscription-reads": "11621", - "x-ms-request-id": "2d524ac8-8ed9-4911-afdf-305db347380a", - "x-ms-routing-request-id": "WESTUS2:20210519T190000Z:2d524ac8-8ed9-4911-afdf-305db347380a" + "x-ms-correlation-request-id": "84d3f02e-0a8e-4762-8dca-9251b8646f51", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "84d3f02e-0a8e-4762-8dca-9251b8646f51", + "x-ms-routing-request-id": "WESTUS2:20210616T002155Z:84d3f02e-0a8e-4762-8dca-9251b8646f51" }, "ResponseBody": [] }, @@ -4255,7 +4396,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c479b452ad52a1462a42e02a354afca7", "x-ms-return-client-request-id": "true" }, @@ -4264,17 +4405,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:00 GMT", + "Date": "Wed, 16 Jun 2021 00:21:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a6c2d618-ae1b-4edf-a0fd-52bf9f496040", - "x-ms-ratelimit-remaining-subscription-reads": "11619", - "x-ms-request-id": "a6c2d618-ae1b-4edf-a0fd-52bf9f496040", - "x-ms-routing-request-id": "WESTUS2:20210519T190001Z:a6c2d618-ae1b-4edf-a0fd-52bf9f496040" + "x-ms-correlation-request-id": "d750081f-ea31-4833-a0e0-4272ed0dd792", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "d750081f-ea31-4833-a0e0-4272ed0dd792", + "x-ms-routing-request-id": "WESTUS2:20210616T002156Z:d750081f-ea31-4833-a0e0-4272ed0dd792" }, "ResponseBody": [] }, @@ -4283,7 +4424,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "79ba2a20b110afedbc46d25f664fd452", "x-ms-return-client-request-id": "true" }, @@ -4292,17 +4433,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:01 GMT", + "Date": "Wed, 16 Jun 2021 00:21:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b0e87791-1a18-47ab-b0a1-ff3d161b6587", - "x-ms-ratelimit-remaining-subscription-reads": "11617", - "x-ms-request-id": "b0e87791-1a18-47ab-b0a1-ff3d161b6587", - "x-ms-routing-request-id": "WESTUS2:20210519T190002Z:b0e87791-1a18-47ab-b0a1-ff3d161b6587" + "x-ms-correlation-request-id": "a26608cb-9c58-4efe-90bf-26423937e58d", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "a26608cb-9c58-4efe-90bf-26423937e58d", + "x-ms-routing-request-id": "WESTUS2:20210616T002157Z:a26608cb-9c58-4efe-90bf-26423937e58d" }, "ResponseBody": [] }, @@ -4311,7 +4452,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fce2dfb191beffaa7ae4778d5c76dc1", "x-ms-return-client-request-id": "true" }, @@ -4320,17 +4461,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:02 GMT", + "Date": "Wed, 16 Jun 2021 00:21:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6a88cefe-505c-4288-8a45-9cf36e0d7e4e", - "x-ms-ratelimit-remaining-subscription-reads": "11615", - "x-ms-request-id": "6a88cefe-505c-4288-8a45-9cf36e0d7e4e", - "x-ms-routing-request-id": "WESTUS2:20210519T190003Z:6a88cefe-505c-4288-8a45-9cf36e0d7e4e" + "x-ms-correlation-request-id": "90f22fd3-b051-4d63-8c6f-5c3c97217fa6", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "90f22fd3-b051-4d63-8c6f-5c3c97217fa6", + "x-ms-routing-request-id": "WESTUS2:20210616T002158Z:90f22fd3-b051-4d63-8c6f-5c3c97217fa6" }, "ResponseBody": [] }, @@ -4339,7 +4480,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85f9ab992d7ca139c7ca070bdbe63bdb", "x-ms-return-client-request-id": "true" }, @@ -4348,17 +4489,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:03 GMT", + "Date": "Wed, 16 Jun 2021 00:21:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a008bbe7-dd93-44d7-b591-9b314e0755e7", - "x-ms-ratelimit-remaining-subscription-reads": "11613", - "x-ms-request-id": "a008bbe7-dd93-44d7-b591-9b314e0755e7", - "x-ms-routing-request-id": "WESTUS2:20210519T190004Z:a008bbe7-dd93-44d7-b591-9b314e0755e7" + "x-ms-correlation-request-id": "7396f524-4425-4aa4-b569-6b3d6afbe613", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "7396f524-4425-4aa4-b569-6b3d6afbe613", + "x-ms-routing-request-id": "WESTUS2:20210616T002159Z:7396f524-4425-4aa4-b569-6b3d6afbe613" }, "ResponseBody": [] }, @@ -4367,7 +4508,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "082f8d6e9c7c078b2fcbd1616a75daf5", "x-ms-return-client-request-id": "true" }, @@ -4376,17 +4517,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:04 GMT", + "Date": "Wed, 16 Jun 2021 00:22:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cbdb2fc6-331b-483d-93a2-a6546882a1b0", - "x-ms-ratelimit-remaining-subscription-reads": "11611", - "x-ms-request-id": "cbdb2fc6-331b-483d-93a2-a6546882a1b0", - "x-ms-routing-request-id": "WESTUS2:20210519T190005Z:cbdb2fc6-331b-483d-93a2-a6546882a1b0" + "x-ms-correlation-request-id": "e2c08197-06e8-48dc-b677-bbc484f622d3", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "e2c08197-06e8-48dc-b677-bbc484f622d3", + "x-ms-routing-request-id": "WESTUS2:20210616T002200Z:e2c08197-06e8-48dc-b677-bbc484f622d3" }, "ResponseBody": [] }, @@ -4395,7 +4536,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bbc611d94e55cdd6f32d985111ee14c1", "x-ms-return-client-request-id": "true" }, @@ -4404,17 +4545,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:05 GMT", + "Date": "Wed, 16 Jun 2021 00:22:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e9180f18-fa03-4aaf-a57a-41e66c233180", - "x-ms-ratelimit-remaining-subscription-reads": "11609", - "x-ms-request-id": "e9180f18-fa03-4aaf-a57a-41e66c233180", - "x-ms-routing-request-id": "WESTUS2:20210519T190006Z:e9180f18-fa03-4aaf-a57a-41e66c233180" + "x-ms-correlation-request-id": "78ea71c3-bc32-41d5-b929-bd42ae4ca62e", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "78ea71c3-bc32-41d5-b929-bd42ae4ca62e", + "x-ms-routing-request-id": "WESTUS2:20210616T002201Z:78ea71c3-bc32-41d5-b929-bd42ae4ca62e" }, "ResponseBody": [] }, @@ -4423,7 +4564,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "470a6b736598fd451ff256b05bd83751", "x-ms-return-client-request-id": "true" }, @@ -4432,17 +4573,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:06 GMT", + "Date": "Wed, 16 Jun 2021 00:22:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e", - "x-ms-ratelimit-remaining-subscription-reads": "11607", - "x-ms-request-id": "d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e", - "x-ms-routing-request-id": "WESTUS2:20210519T190007Z:d2a9fc5f-55c9-4dab-9bd4-73ac1fa2f45e" + "x-ms-correlation-request-id": "3fab6385-72c0-4eb0-80d7-6263fae94f9b", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "3fab6385-72c0-4eb0-80d7-6263fae94f9b", + "x-ms-routing-request-id": "WESTUS2:20210616T002205Z:3fab6385-72c0-4eb0-80d7-6263fae94f9b" }, "ResponseBody": [] }, @@ -4451,7 +4592,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c93212ef7f201f86b761154e0339f541", "x-ms-return-client-request-id": "true" }, @@ -4460,17 +4601,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:07 GMT", + "Date": "Wed, 16 Jun 2021 00:22:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ebbecf56-ee72-42e3-beb8-dad07bdff52c", - "x-ms-ratelimit-remaining-subscription-reads": "11605", - "x-ms-request-id": "ebbecf56-ee72-42e3-beb8-dad07bdff52c", - "x-ms-routing-request-id": "WESTUS2:20210519T190008Z:ebbecf56-ee72-42e3-beb8-dad07bdff52c" + "x-ms-correlation-request-id": "0acd3e7c-8340-40b9-87d7-1f1403dac012", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "0acd3e7c-8340-40b9-87d7-1f1403dac012", + "x-ms-routing-request-id": "WESTUS2:20210616T002206Z:0acd3e7c-8340-40b9-87d7-1f1403dac012" }, "ResponseBody": [] }, @@ -4479,7 +4620,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "feed10b6926b735cccc89b63f825721a", "x-ms-return-client-request-id": "true" }, @@ -4488,17 +4629,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:09 GMT", + "Date": "Wed, 16 Jun 2021 00:22:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b42794fb-1cf0-4f19-b2b5-791eee5ceb16", - "x-ms-ratelimit-remaining-subscription-reads": "11603", - "x-ms-request-id": "b42794fb-1cf0-4f19-b2b5-791eee5ceb16", - "x-ms-routing-request-id": "WESTUS2:20210519T190009Z:b42794fb-1cf0-4f19-b2b5-791eee5ceb16" + "x-ms-correlation-request-id": "4f913bbb-2227-41c9-b57b-028e5ddc1679", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4f913bbb-2227-41c9-b57b-028e5ddc1679", + "x-ms-routing-request-id": "WESTUS2:20210616T002207Z:4f913bbb-2227-41c9-b57b-028e5ddc1679" }, "ResponseBody": [] }, @@ -4507,7 +4648,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff6147f64abbf4a0e5ea8f3650f6f9e5", "x-ms-return-client-request-id": "true" }, @@ -4516,17 +4657,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:10 GMT", + "Date": "Wed, 16 Jun 2021 00:22:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4006069a-fab5-47a9-9e09-6acecfea1c34", - "x-ms-ratelimit-remaining-subscription-reads": "11601", - "x-ms-request-id": "4006069a-fab5-47a9-9e09-6acecfea1c34", - "x-ms-routing-request-id": "WESTUS2:20210519T190010Z:4006069a-fab5-47a9-9e09-6acecfea1c34" + "x-ms-correlation-request-id": "a61201cf-04ec-4e93-a945-34baad617d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "a61201cf-04ec-4e93-a945-34baad617d5c", + "x-ms-routing-request-id": "WESTUS2:20210616T002208Z:a61201cf-04ec-4e93-a945-34baad617d5c" }, "ResponseBody": [] }, @@ -4535,7 +4676,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4afa15fc38ea5ce6b5bffd57e3232791", "x-ms-return-client-request-id": "true" }, @@ -4544,17 +4685,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:11 GMT", + "Date": "Wed, 16 Jun 2021 00:22:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "814825bd-86d6-4793-ae25-c04b2e1e6ac3", - "x-ms-ratelimit-remaining-subscription-reads": "11599", - "x-ms-request-id": "814825bd-86d6-4793-ae25-c04b2e1e6ac3", - "x-ms-routing-request-id": "WESTUS2:20210519T190011Z:814825bd-86d6-4793-ae25-c04b2e1e6ac3" + "x-ms-correlation-request-id": "abd47262-0734-47b5-b8ec-7c8587cede92", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "abd47262-0734-47b5-b8ec-7c8587cede92", + "x-ms-routing-request-id": "WESTUS2:20210616T002209Z:abd47262-0734-47b5-b8ec-7c8587cede92" }, "ResponseBody": [] }, @@ -4563,7 +4704,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc58faeff6d76c8570f91880032623d5", "x-ms-return-client-request-id": "true" }, @@ -4572,17 +4713,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:12 GMT", + "Date": "Wed, 16 Jun 2021 00:22:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b3965654-0cb5-48e7-ad59-dba3cf7883f2", - "x-ms-ratelimit-remaining-subscription-reads": "11597", - "x-ms-request-id": "b3965654-0cb5-48e7-ad59-dba3cf7883f2", - "x-ms-routing-request-id": "WESTUS2:20210519T190013Z:b3965654-0cb5-48e7-ad59-dba3cf7883f2" + "x-ms-correlation-request-id": "8933a024-21d7-463d-93a8-81253890a854", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "8933a024-21d7-463d-93a8-81253890a854", + "x-ms-routing-request-id": "WESTUS2:20210616T002210Z:8933a024-21d7-463d-93a8-81253890a854" }, "ResponseBody": [] }, @@ -4591,7 +4732,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e266b6cf272bbd30600549fc4c4810c2", "x-ms-return-client-request-id": "true" }, @@ -4600,17 +4741,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:13 GMT", + "Date": "Wed, 16 Jun 2021 00:22:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "321d2777-ccd6-4680-ad74-80bf7ab165f5", - "x-ms-ratelimit-remaining-subscription-reads": "11595", - "x-ms-request-id": "321d2777-ccd6-4680-ad74-80bf7ab165f5", - "x-ms-routing-request-id": "WESTUS2:20210519T190014Z:321d2777-ccd6-4680-ad74-80bf7ab165f5" + "x-ms-correlation-request-id": "8d5403df-374b-4937-8a87-3e1b01be91bf", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "8d5403df-374b-4937-8a87-3e1b01be91bf", + "x-ms-routing-request-id": "WESTUS2:20210616T002211Z:8d5403df-374b-4937-8a87-3e1b01be91bf" }, "ResponseBody": [] }, @@ -4619,7 +4760,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5547fdc23c9d050d8f8ddaf01f65598f", "x-ms-return-client-request-id": "true" }, @@ -4628,17 +4769,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:14 GMT", + "Date": "Wed, 16 Jun 2021 00:22:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b235f3c6-a876-45a9-86b2-dbe364b452ff", - "x-ms-ratelimit-remaining-subscription-reads": "11593", - "x-ms-request-id": "b235f3c6-a876-45a9-86b2-dbe364b452ff", - "x-ms-routing-request-id": "WESTUS2:20210519T190015Z:b235f3c6-a876-45a9-86b2-dbe364b452ff" + "x-ms-correlation-request-id": "f6f47d96-d372-4e29-a77b-fa166981dd34", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "f6f47d96-d372-4e29-a77b-fa166981dd34", + "x-ms-routing-request-id": "WESTUS2:20210616T002212Z:f6f47d96-d372-4e29-a77b-fa166981dd34" }, "ResponseBody": [] }, @@ -4647,7 +4788,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d88279b44bcc766ca9b5bd2ad881f27", "x-ms-return-client-request-id": "true" }, @@ -4656,17 +4797,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:15 GMT", + "Date": "Wed, 16 Jun 2021 00:22:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d55a13bf-3bce-4c46-a26c-8fdf0955869a", - "x-ms-ratelimit-remaining-subscription-reads": "11591", - "x-ms-request-id": "d55a13bf-3bce-4c46-a26c-8fdf0955869a", - "x-ms-routing-request-id": "WESTUS2:20210519T190016Z:d55a13bf-3bce-4c46-a26c-8fdf0955869a" + "x-ms-correlation-request-id": "5918a5f2-d7fd-4e24-b565-e4ada0bd77b0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "5918a5f2-d7fd-4e24-b565-e4ada0bd77b0", + "x-ms-routing-request-id": "WESTUS2:20210616T002213Z:5918a5f2-d7fd-4e24-b565-e4ada0bd77b0" }, "ResponseBody": [] }, @@ -4675,7 +4816,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05bd56e9cdde9238a861529d4c3f9dfb", "x-ms-return-client-request-id": "true" }, @@ -4684,17 +4825,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:17 GMT", + "Date": "Wed, 16 Jun 2021 00:22:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e07ca779-7304-4dff-a409-09272863f00c", - "x-ms-ratelimit-remaining-subscription-reads": "11589", - "x-ms-request-id": "e07ca779-7304-4dff-a409-09272863f00c", - "x-ms-routing-request-id": "WESTUS2:20210519T190017Z:e07ca779-7304-4dff-a409-09272863f00c" + "x-ms-correlation-request-id": "332cb739-031b-4677-8571-10829587c2d1", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "332cb739-031b-4677-8571-10829587c2d1", + "x-ms-routing-request-id": "WESTUS2:20210616T002214Z:332cb739-031b-4677-8571-10829587c2d1" }, "ResponseBody": [] }, @@ -4703,7 +4844,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2460b9abe2c07e06977f8b02e03a5707", "x-ms-return-client-request-id": "true" }, @@ -4712,17 +4853,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:18 GMT", + "Date": "Wed, 16 Jun 2021 00:22:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d03a3add-0fe5-4e1d-bdf9-8ed396301bf4", - "x-ms-ratelimit-remaining-subscription-reads": "11587", - "x-ms-request-id": "d03a3add-0fe5-4e1d-bdf9-8ed396301bf4", - "x-ms-routing-request-id": "WESTUS2:20210519T190018Z:d03a3add-0fe5-4e1d-bdf9-8ed396301bf4" + "x-ms-correlation-request-id": "33934ca7-e24a-4a62-8411-8ed40ef8daed", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "33934ca7-e24a-4a62-8411-8ed40ef8daed", + "x-ms-routing-request-id": "WESTUS2:20210616T002215Z:33934ca7-e24a-4a62-8411-8ed40ef8daed" }, "ResponseBody": [] }, @@ -4731,7 +4872,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c907b26e54a7ceb1eff5855af1c97a8a", "x-ms-return-client-request-id": "true" }, @@ -4740,17 +4881,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:19 GMT", + "Date": "Wed, 16 Jun 2021 00:22:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "656ea493-2738-4b98-8fb7-4d8f9f73bfb9", - "x-ms-ratelimit-remaining-subscription-reads": "11585", - "x-ms-request-id": "656ea493-2738-4b98-8fb7-4d8f9f73bfb9", - "x-ms-routing-request-id": "WESTUS2:20210519T190019Z:656ea493-2738-4b98-8fb7-4d8f9f73bfb9" + "x-ms-correlation-request-id": "0fa66b90-3005-4bff-a474-aae5937506e5", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "0fa66b90-3005-4bff-a474-aae5937506e5", + "x-ms-routing-request-id": "WESTUS2:20210616T002216Z:0fa66b90-3005-4bff-a474-aae5937506e5" }, "ResponseBody": [] }, @@ -4759,7 +4900,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f42760fdfa270767503f6d5f4135b26d", "x-ms-return-client-request-id": "true" }, @@ -4768,17 +4909,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:20 GMT", + "Date": "Wed, 16 Jun 2021 00:22:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "32362278-e23b-4020-8036-04e7f38e5cce", - "x-ms-ratelimit-remaining-subscription-reads": "11583", - "x-ms-request-id": "32362278-e23b-4020-8036-04e7f38e5cce", - "x-ms-routing-request-id": "WESTUS2:20210519T190020Z:32362278-e23b-4020-8036-04e7f38e5cce" + "x-ms-correlation-request-id": "dde3f3ab-6f11-45d7-ab4a-2d4aea024edc", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "dde3f3ab-6f11-45d7-ab4a-2d4aea024edc", + "x-ms-routing-request-id": "WESTUS2:20210616T002217Z:dde3f3ab-6f11-45d7-ab4a-2d4aea024edc" }, "ResponseBody": [] }, @@ -4787,7 +4928,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9a2f4b09d4385654089235ca5dab8cce", "x-ms-return-client-request-id": "true" }, @@ -4796,17 +4937,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:21 GMT", + "Date": "Wed, 16 Jun 2021 00:22:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0541b1b1-a63c-4fa4-944d-81266c04be3f", - "x-ms-ratelimit-remaining-subscription-reads": "11581", - "x-ms-request-id": "0541b1b1-a63c-4fa4-944d-81266c04be3f", - "x-ms-routing-request-id": "WESTUS2:20210519T190021Z:0541b1b1-a63c-4fa4-944d-81266c04be3f" + "x-ms-correlation-request-id": "e169093a-bf2c-4cb1-aeaa-4551f97c0741", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "e169093a-bf2c-4cb1-aeaa-4551f97c0741", + "x-ms-routing-request-id": "WESTUS2:20210616T002218Z:e169093a-bf2c-4cb1-aeaa-4551f97c0741" }, "ResponseBody": [] }, @@ -4815,7 +4956,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80050104631373df4b007867e7528dba", "x-ms-return-client-request-id": "true" }, @@ -4824,17 +4965,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:22 GMT", + "Date": "Wed, 16 Jun 2021 00:22:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "875423a8-a76f-4221-91a2-46187229e104", - "x-ms-ratelimit-remaining-subscription-reads": "11579", - "x-ms-request-id": "875423a8-a76f-4221-91a2-46187229e104", - "x-ms-routing-request-id": "WESTUS2:20210519T190022Z:875423a8-a76f-4221-91a2-46187229e104" + "x-ms-correlation-request-id": "e3c1eca6-3198-450c-b79e-4faf1fad9c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "e3c1eca6-3198-450c-b79e-4faf1fad9c0f", + "x-ms-routing-request-id": "WESTUS2:20210616T002219Z:e3c1eca6-3198-450c-b79e-4faf1fad9c0f" }, "ResponseBody": [] }, @@ -4843,7 +4984,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a5501843e09a28520bd1eb95c59daaa4", "x-ms-return-client-request-id": "true" }, @@ -4852,17 +4993,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:23 GMT", + "Date": "Wed, 16 Jun 2021 00:22:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "eabc4242-634c-4d8a-9cd7-b5536e11822b", - "x-ms-ratelimit-remaining-subscription-reads": "11577", - "x-ms-request-id": "eabc4242-634c-4d8a-9cd7-b5536e11822b", - "x-ms-routing-request-id": "WESTUS2:20210519T190023Z:eabc4242-634c-4d8a-9cd7-b5536e11822b" + "x-ms-correlation-request-id": "d3dba606-2ad1-49d1-b14e-c2210726d1f7", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "d3dba606-2ad1-49d1-b14e-c2210726d1f7", + "x-ms-routing-request-id": "WESTUS2:20210616T002220Z:d3dba606-2ad1-49d1-b14e-c2210726d1f7" }, "ResponseBody": [] }, @@ -4871,7 +5012,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "405a9fb2312fa65a6cbb4e385bec6eb6", "x-ms-return-client-request-id": "true" }, @@ -4880,17 +5021,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:24 GMT", + "Date": "Wed, 16 Jun 2021 00:22:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b11a2ad1-fee9-4d87-b340-bc24aebb07de", - "x-ms-ratelimit-remaining-subscription-reads": "11575", - "x-ms-request-id": "b11a2ad1-fee9-4d87-b340-bc24aebb07de", - "x-ms-routing-request-id": "WESTUS2:20210519T190024Z:b11a2ad1-fee9-4d87-b340-bc24aebb07de" + "x-ms-correlation-request-id": "f9d69278-a929-40c3-aaad-d5f4579d53f4", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "f9d69278-a929-40c3-aaad-d5f4579d53f4", + "x-ms-routing-request-id": "WESTUS2:20210616T002221Z:f9d69278-a929-40c3-aaad-d5f4579d53f4" }, "ResponseBody": [] }, @@ -4899,7 +5040,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44867a05e65b2334aedc74417849aeae", "x-ms-return-client-request-id": "true" }, @@ -4908,17 +5049,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:25 GMT", + "Date": "Wed, 16 Jun 2021 00:22:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c6209333-843c-4455-b8f3-14dea08743f7", - "x-ms-ratelimit-remaining-subscription-reads": "11573", - "x-ms-request-id": "c6209333-843c-4455-b8f3-14dea08743f7", - "x-ms-routing-request-id": "WESTUS2:20210519T190025Z:c6209333-843c-4455-b8f3-14dea08743f7" + "x-ms-correlation-request-id": "2a61eec6-b981-45f4-977f-ad86eeabe8e8", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "2a61eec6-b981-45f4-977f-ad86eeabe8e8", + "x-ms-routing-request-id": "WESTUS2:20210616T002222Z:2a61eec6-b981-45f4-977f-ad86eeabe8e8" }, "ResponseBody": [] }, @@ -4927,7 +5068,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48b4d4554cf7118abeaa39de911acd1e", "x-ms-return-client-request-id": "true" }, @@ -4936,17 +5077,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:26 GMT", + "Date": "Wed, 16 Jun 2021 00:22:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2586be88-d04b-4c1f-8530-2ae52c955f9d", - "x-ms-ratelimit-remaining-subscription-reads": "11571", - "x-ms-request-id": "2586be88-d04b-4c1f-8530-2ae52c955f9d", - "x-ms-routing-request-id": "WESTUS2:20210519T190026Z:2586be88-d04b-4c1f-8530-2ae52c955f9d" + "x-ms-correlation-request-id": "8256b4fa-52eb-40a0-802a-bbfd1bac14b6", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "8256b4fa-52eb-40a0-802a-bbfd1bac14b6", + "x-ms-routing-request-id": "WESTUS2:20210616T002223Z:8256b4fa-52eb-40a0-802a-bbfd1bac14b6" }, "ResponseBody": [] }, @@ -4955,7 +5096,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a9035626516cc496a369153bc182d22", "x-ms-return-client-request-id": "true" }, @@ -4964,17 +5105,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:27 GMT", + "Date": "Wed, 16 Jun 2021 00:22:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f43104f6-72b3-48f9-a930-e867597849c7", - "x-ms-ratelimit-remaining-subscription-reads": "11569", - "x-ms-request-id": "f43104f6-72b3-48f9-a930-e867597849c7", - "x-ms-routing-request-id": "WESTUS2:20210519T190027Z:f43104f6-72b3-48f9-a930-e867597849c7" + "x-ms-correlation-request-id": "37ff40af-5785-41b1-b1fb-b0bd46174e53", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "37ff40af-5785-41b1-b1fb-b0bd46174e53", + "x-ms-routing-request-id": "WESTUS2:20210616T002225Z:37ff40af-5785-41b1-b1fb-b0bd46174e53" }, "ResponseBody": [] }, @@ -4983,7 +5124,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87e2a00c2638b8beef7586b0ad559294", "x-ms-return-client-request-id": "true" }, @@ -4992,17 +5133,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:28 GMT", + "Date": "Wed, 16 Jun 2021 00:22:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3", - "x-ms-ratelimit-remaining-subscription-reads": "11567", - "x-ms-request-id": "3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3", - "x-ms-routing-request-id": "WESTUS2:20210519T190028Z:3d05864f-fbd4-4af1-a4cc-ed1c4a165eb3" + "x-ms-correlation-request-id": "47d64d4e-69e4-4144-8f37-620b6d81be84", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "47d64d4e-69e4-4144-8f37-620b6d81be84", + "x-ms-routing-request-id": "WESTUS2:20210616T002226Z:47d64d4e-69e4-4144-8f37-620b6d81be84" }, "ResponseBody": [] }, @@ -5011,7 +5152,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "42df560f63b8f0988be8ddc1bb3754a5", "x-ms-return-client-request-id": "true" }, @@ -5020,17 +5161,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:29 GMT", + "Date": "Wed, 16 Jun 2021 00:22:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2b774903-7dd0-4175-b712-21fea69a1d00", - "x-ms-ratelimit-remaining-subscription-reads": "11565", - "x-ms-request-id": "2b774903-7dd0-4175-b712-21fea69a1d00", - "x-ms-routing-request-id": "WESTUS2:20210519T190029Z:2b774903-7dd0-4175-b712-21fea69a1d00" + "x-ms-correlation-request-id": "cceded06-b3f0-40c4-a269-3b31d42a090a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "cceded06-b3f0-40c4-a269-3b31d42a090a", + "x-ms-routing-request-id": "WESTUS2:20210616T002227Z:cceded06-b3f0-40c4-a269-3b31d42a090a" }, "ResponseBody": [] }, @@ -5039,7 +5180,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f1d2167c46373ce676d75ba0de981f14", "x-ms-return-client-request-id": "true" }, @@ -5048,17 +5189,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:30 GMT", + "Date": "Wed, 16 Jun 2021 00:22:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a417d37e-22ef-41b9-a980-2f08d5a1d6b6", - "x-ms-ratelimit-remaining-subscription-reads": "11563", - "x-ms-request-id": "a417d37e-22ef-41b9-a980-2f08d5a1d6b6", - "x-ms-routing-request-id": "WESTUS2:20210519T190030Z:a417d37e-22ef-41b9-a980-2f08d5a1d6b6" + "x-ms-correlation-request-id": "ad257f0d-9b10-4066-8281-aef18b49a91e", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "ad257f0d-9b10-4066-8281-aef18b49a91e", + "x-ms-routing-request-id": "WESTUS2:20210616T002228Z:ad257f0d-9b10-4066-8281-aef18b49a91e" }, "ResponseBody": [] }, @@ -5067,7 +5208,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6643fca4eb39a96908f1fb4f48fcfdb8", "x-ms-return-client-request-id": "true" }, @@ -5076,17 +5217,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:31 GMT", + "Date": "Wed, 16 Jun 2021 00:22:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "201e05ff-fa35-4d9f-9ff5-d95d65a31609", - "x-ms-ratelimit-remaining-subscription-reads": "11561", - "x-ms-request-id": "201e05ff-fa35-4d9f-9ff5-d95d65a31609", - "x-ms-routing-request-id": "WESTUS2:20210519T190031Z:201e05ff-fa35-4d9f-9ff5-d95d65a31609" + "x-ms-correlation-request-id": "f79f9e4e-28f9-4c47-849e-2535f7d89f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f79f9e4e-28f9-4c47-849e-2535f7d89f9a", + "x-ms-routing-request-id": "WESTUS2:20210616T002229Z:f79f9e4e-28f9-4c47-849e-2535f7d89f9a" }, "ResponseBody": [] }, @@ -5095,7 +5236,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9634e120a083c95c6fa2cbe108f712f2", "x-ms-return-client-request-id": "true" }, @@ -5104,17 +5245,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:32 GMT", + "Date": "Wed, 16 Jun 2021 00:22:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "98a328ae-e252-42e6-ac76-5cb923f74d47", - "x-ms-ratelimit-remaining-subscription-reads": "11559", - "x-ms-request-id": "98a328ae-e252-42e6-ac76-5cb923f74d47", - "x-ms-routing-request-id": "WESTUS2:20210519T190032Z:98a328ae-e252-42e6-ac76-5cb923f74d47" + "x-ms-correlation-request-id": "5332f97f-111e-44d5-ba20-649e3ad22a10", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "5332f97f-111e-44d5-ba20-649e3ad22a10", + "x-ms-routing-request-id": "WESTUS2:20210616T002230Z:5332f97f-111e-44d5-ba20-649e3ad22a10" }, "ResponseBody": [] }, @@ -5123,7 +5264,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be1dc8c9edf4916cac28e8464a97f379", "x-ms-return-client-request-id": "true" }, @@ -5132,17 +5273,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:33 GMT", + "Date": "Wed, 16 Jun 2021 00:22:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0", - "x-ms-ratelimit-remaining-subscription-reads": "11557", - "x-ms-request-id": "64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0", - "x-ms-routing-request-id": "WESTUS2:20210519T190033Z:64bbb3cb-6ccf-4c7f-adae-9515a8a1c3d0" + "x-ms-correlation-request-id": "184284b3-f2df-476b-838c-12e5364879bc", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "184284b3-f2df-476b-838c-12e5364879bc", + "x-ms-routing-request-id": "WESTUS2:20210616T002231Z:184284b3-f2df-476b-838c-12e5364879bc" }, "ResponseBody": [] }, @@ -5151,7 +5292,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd80a2da88640391a079f7961f88a111", "x-ms-return-client-request-id": "true" }, @@ -5160,17 +5301,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:34 GMT", + "Date": "Wed, 16 Jun 2021 00:22:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "095ab300-fcf6-493b-8cdc-00b0d67fde93", - "x-ms-ratelimit-remaining-subscription-reads": "11555", - "x-ms-request-id": "095ab300-fcf6-493b-8cdc-00b0d67fde93", - "x-ms-routing-request-id": "WESTUS2:20210519T190034Z:095ab300-fcf6-493b-8cdc-00b0d67fde93" + "x-ms-correlation-request-id": "56f9934c-0732-48e9-afe5-0e5feb4dde0a", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "56f9934c-0732-48e9-afe5-0e5feb4dde0a", + "x-ms-routing-request-id": "WESTUS2:20210616T002232Z:56f9934c-0732-48e9-afe5-0e5feb4dde0a" }, "ResponseBody": [] }, @@ -5179,7 +5320,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f8608df3fdf32c475a2e95ab7167fd8", "x-ms-return-client-request-id": "true" }, @@ -5188,17 +5329,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:35 GMT", + "Date": "Wed, 16 Jun 2021 00:22:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7030a066-aed0-4b1f-9904-104802940d72", - "x-ms-ratelimit-remaining-subscription-reads": "11553", - "x-ms-request-id": "7030a066-aed0-4b1f-9904-104802940d72", - "x-ms-routing-request-id": "WESTUS2:20210519T190035Z:7030a066-aed0-4b1f-9904-104802940d72" + "x-ms-correlation-request-id": "dcd23bbe-d771-4667-b3bd-b5ac8ea1c756", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "dcd23bbe-d771-4667-b3bd-b5ac8ea1c756", + "x-ms-routing-request-id": "WESTUS2:20210616T002233Z:dcd23bbe-d771-4667-b3bd-b5ac8ea1c756" }, "ResponseBody": [] }, @@ -5207,7 +5348,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "650652af1576408e37191d7af6d57223", "x-ms-return-client-request-id": "true" }, @@ -5215,19 +5356,18 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:36 GMT", + "Date": "Wed, 16 Jun 2021 00:22:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "57e3f98f-b5c2-4438-af26-345259b6ad7a", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "57e3f98f-b5c2-4438-af26-345259b6ad7a", - "x-ms-routing-request-id": "WESTUS2:20210519T190037Z:57e3f98f-b5c2-4438-af26-345259b6ad7a" + "x-ms-correlation-request-id": "38a83b93-6dc7-4f03-8678-57129538d758", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "38a83b93-6dc7-4f03-8678-57129538d758", + "x-ms-routing-request-id": "WESTUS2:20210616T002234Z:38a83b93-6dc7-4f03-8678-57129538d758" }, "ResponseBody": [] }, @@ -5236,7 +5376,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4166d78773119b9ade4d88c19e364c89", "x-ms-return-client-request-id": "true" }, @@ -5245,17 +5385,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:37 GMT", + "Date": "Wed, 16 Jun 2021 00:22:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dea51426-5e66-4904-ae28-25cfbe32b00e", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "dea51426-5e66-4904-ae28-25cfbe32b00e", - "x-ms-routing-request-id": "WESTUS2:20210519T190038Z:dea51426-5e66-4904-ae28-25cfbe32b00e" + "x-ms-correlation-request-id": "cdf3a7f0-e3aa-46fd-83b1-6ea8c9bedf83", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "cdf3a7f0-e3aa-46fd-83b1-6ea8c9bedf83", + "x-ms-routing-request-id": "WESTUS2:20210616T002235Z:cdf3a7f0-e3aa-46fd-83b1-6ea8c9bedf83" }, "ResponseBody": [] }, @@ -5264,7 +5404,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cde61ffa3b82ca9a7a4548c621493c9f", "x-ms-return-client-request-id": "true" }, @@ -5273,17 +5413,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:38 GMT", + "Date": "Wed, 16 Jun 2021 00:22:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9929a374-3b8a-4e65-8423-2662be65af97", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "9929a374-3b8a-4e65-8423-2662be65af97", - "x-ms-routing-request-id": "WESTUS2:20210519T190039Z:9929a374-3b8a-4e65-8423-2662be65af97" + "x-ms-correlation-request-id": "f1354fd8-7448-4522-9975-072b067436ac", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f1354fd8-7448-4522-9975-072b067436ac", + "x-ms-routing-request-id": "WESTUS2:20210616T002236Z:f1354fd8-7448-4522-9975-072b067436ac" }, "ResponseBody": [] }, @@ -5292,7 +5432,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e0d3c6303daf3cc7b76b86288ccca200", "x-ms-return-client-request-id": "true" }, @@ -5301,17 +5441,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:39 GMT", + "Date": "Wed, 16 Jun 2021 00:22:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab80d740-ddd5-4b10-88cc-8c7577e128c0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "ab80d740-ddd5-4b10-88cc-8c7577e128c0", - "x-ms-routing-request-id": "WESTUS2:20210519T190040Z:ab80d740-ddd5-4b10-88cc-8c7577e128c0" + "x-ms-correlation-request-id": "45a58f9f-3414-48f3-90cc-cc9a307076b6", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "45a58f9f-3414-48f3-90cc-cc9a307076b6", + "x-ms-routing-request-id": "WESTUS2:20210616T002237Z:45a58f9f-3414-48f3-90cc-cc9a307076b6" }, "ResponseBody": [] }, @@ -5320,7 +5460,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d78094cda5ee4ca13c9cc7cb2ad37995", "x-ms-return-client-request-id": "true" }, @@ -5329,17 +5469,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:40 GMT", + "Date": "Wed, 16 Jun 2021 00:22:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7835470b-800d-47e7-b1db-c7f3e422b091", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "7835470b-800d-47e7-b1db-c7f3e422b091", - "x-ms-routing-request-id": "WESTUS2:20210519T190041Z:7835470b-800d-47e7-b1db-c7f3e422b091" + "x-ms-correlation-request-id": "d2c936f5-fc15-4291-a8e1-c8feb287a134", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "d2c936f5-fc15-4291-a8e1-c8feb287a134", + "x-ms-routing-request-id": "WESTUS2:20210616T002238Z:d2c936f5-fc15-4291-a8e1-c8feb287a134" }, "ResponseBody": [] }, @@ -5348,7 +5488,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d891e8116b63bcd958aa1517b4723dad", "x-ms-return-client-request-id": "true" }, @@ -5357,17 +5497,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:41 GMT", + "Date": "Wed, 16 Jun 2021 00:22:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "091bf66b-2818-4d2d-b42b-0e01998d1a0c", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "091bf66b-2818-4d2d-b42b-0e01998d1a0c", - "x-ms-routing-request-id": "WESTUS2:20210519T190042Z:091bf66b-2818-4d2d-b42b-0e01998d1a0c" + "x-ms-correlation-request-id": "7883a77b-c3c8-470c-8af9-6d50bca35ff0", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "7883a77b-c3c8-470c-8af9-6d50bca35ff0", + "x-ms-routing-request-id": "WESTUS2:20210616T002239Z:7883a77b-c3c8-470c-8af9-6d50bca35ff0" }, "ResponseBody": [] }, @@ -5376,7 +5516,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8df847a364c98bb02487a31376fb11e4", "x-ms-return-client-request-id": "true" }, @@ -5385,17 +5525,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:42 GMT", + "Date": "Wed, 16 Jun 2021 00:22:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ebd43c15-9241-46d0-a547-97e7305914ce", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "ebd43c15-9241-46d0-a547-97e7305914ce", - "x-ms-routing-request-id": "WESTUS2:20210519T190043Z:ebd43c15-9241-46d0-a547-97e7305914ce" + "x-ms-correlation-request-id": "360c183c-92dd-4795-baf5-ba91d2d5f233", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "360c183c-92dd-4795-baf5-ba91d2d5f233", + "x-ms-routing-request-id": "WESTUS2:20210616T002240Z:360c183c-92dd-4795-baf5-ba91d2d5f233" }, "ResponseBody": [] }, @@ -5404,7 +5544,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a416f1f1c93b619dbac37f438f8a97ca", "x-ms-return-client-request-id": "true" }, @@ -5413,17 +5553,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:43 GMT", + "Date": "Wed, 16 Jun 2021 00:22:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "08b73a0e-f5e6-4404-8bdf-5c3e228334d7", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "08b73a0e-f5e6-4404-8bdf-5c3e228334d7", - "x-ms-routing-request-id": "WESTUS2:20210519T190044Z:08b73a0e-f5e6-4404-8bdf-5c3e228334d7" + "x-ms-correlation-request-id": "0291ff9e-9823-47ff-9229-dcdc883d4b2c", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "0291ff9e-9823-47ff-9229-dcdc883d4b2c", + "x-ms-routing-request-id": "WESTUS2:20210616T002241Z:0291ff9e-9823-47ff-9229-dcdc883d4b2c" }, "ResponseBody": [] }, @@ -5432,7 +5572,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e328195eecdaadcb3806b3dbc7c6455c", "x-ms-return-client-request-id": "true" }, @@ -5441,17 +5581,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:44 GMT", + "Date": "Wed, 16 Jun 2021 00:22:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a", - "x-ms-routing-request-id": "WESTUS2:20210519T190045Z:4c5c3b9f-5ec0-47ff-b7ea-5728c62f6d3a" + "x-ms-correlation-request-id": "6f3a74ba-e745-4711-b593-43858dd9dc40", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "6f3a74ba-e745-4711-b593-43858dd9dc40", + "x-ms-routing-request-id": "WESTUS2:20210616T002242Z:6f3a74ba-e745-4711-b593-43858dd9dc40" }, "ResponseBody": [] }, @@ -5460,7 +5600,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2253199995bd972a997d205e56cfb9a", "x-ms-return-client-request-id": "true" }, @@ -5469,17 +5609,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:45 GMT", + "Date": "Wed, 16 Jun 2021 00:22:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "211b06fc-9d15-43f0-a1c4-d57754f57d5b", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "211b06fc-9d15-43f0-a1c4-d57754f57d5b", - "x-ms-routing-request-id": "WESTUS2:20210519T190046Z:211b06fc-9d15-43f0-a1c4-d57754f57d5b" + "x-ms-correlation-request-id": "165c9f3c-f202-4cf3-91b8-3f3520de8c27", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "165c9f3c-f202-4cf3-91b8-3f3520de8c27", + "x-ms-routing-request-id": "WESTUS2:20210616T002243Z:165c9f3c-f202-4cf3-91b8-3f3520de8c27" }, "ResponseBody": [] }, @@ -5488,7 +5628,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5cb4d9ef2ed2040926696c3516c199f4", "x-ms-return-client-request-id": "true" }, @@ -5497,17 +5637,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:46 GMT", + "Date": "Wed, 16 Jun 2021 00:22:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7797fa2a-b440-47b0-96e1-9e4e37356531", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "7797fa2a-b440-47b0-96e1-9e4e37356531", - "x-ms-routing-request-id": "WESTUS2:20210519T190047Z:7797fa2a-b440-47b0-96e1-9e4e37356531" + "x-ms-correlation-request-id": "41504fcb-6fd1-45b8-992f-fc606f9ef10a", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "41504fcb-6fd1-45b8-992f-fc606f9ef10a", + "x-ms-routing-request-id": "WESTUS2:20210616T002244Z:41504fcb-6fd1-45b8-992f-fc606f9ef10a" }, "ResponseBody": [] }, @@ -5516,7 +5656,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5eaa227dd564c56ea74f39431ac5c7cb", "x-ms-return-client-request-id": "true" }, @@ -5525,17 +5665,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:47 GMT", + "Date": "Wed, 16 Jun 2021 00:22:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d2c0f295-1c6a-425d-be99-35b7d0be248f", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "d2c0f295-1c6a-425d-be99-35b7d0be248f", - "x-ms-routing-request-id": "WESTUS2:20210519T190048Z:d2c0f295-1c6a-425d-be99-35b7d0be248f" + "x-ms-correlation-request-id": "b302698f-d795-4137-a720-41247e087ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "b302698f-d795-4137-a720-41247e087ad3", + "x-ms-routing-request-id": "WESTUS2:20210616T002245Z:b302698f-d795-4137-a720-41247e087ad3" }, "ResponseBody": [] }, @@ -5544,7 +5684,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeec180ae9116b8a27209cf12c3cc2e8", "x-ms-return-client-request-id": "true" }, @@ -5553,17 +5693,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:48 GMT", + "Date": "Wed, 16 Jun 2021 00:22:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0df361b1-18af-448b-b0c3-8c6c03234c46", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "0df361b1-18af-448b-b0c3-8c6c03234c46", - "x-ms-routing-request-id": "WESTUS2:20210519T190049Z:0df361b1-18af-448b-b0c3-8c6c03234c46" + "x-ms-correlation-request-id": "5704ffa5-db45-4f0f-9f62-ed7eb04350c3", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "5704ffa5-db45-4f0f-9f62-ed7eb04350c3", + "x-ms-routing-request-id": "WESTUS2:20210616T002246Z:5704ffa5-db45-4f0f-9f62-ed7eb04350c3" }, "ResponseBody": [] }, @@ -5572,7 +5712,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c288ddfd9cc219356aeeb583f5c6ea60", "x-ms-return-client-request-id": "true" }, @@ -5581,17 +5721,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:49 GMT", + "Date": "Wed, 16 Jun 2021 00:22:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5", - "x-ms-routing-request-id": "WESTUS2:20210519T190050Z:1d2b512b-4b16-4cfa-a97f-a0a26fdc3ab5" + "x-ms-correlation-request-id": "5d36dd46-88cd-4f6e-a447-9d4456dd4b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "5d36dd46-88cd-4f6e-a447-9d4456dd4b7c", + "x-ms-routing-request-id": "WESTUS2:20210616T002247Z:5d36dd46-88cd-4f6e-a447-9d4456dd4b7c" }, "ResponseBody": [] }, @@ -5600,7 +5740,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd2aa0a1abd594e3983f3744397c996a", "x-ms-return-client-request-id": "true" }, @@ -5609,17 +5749,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:50 GMT", + "Date": "Wed, 16 Jun 2021 00:22:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "056c673d-107a-4ce0-8e70-b05262d716b7", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "056c673d-107a-4ce0-8e70-b05262d716b7", - "x-ms-routing-request-id": "WESTUS2:20210519T190051Z:056c673d-107a-4ce0-8e70-b05262d716b7" + "x-ms-correlation-request-id": "0fcc3e94-85df-4738-adea-476fa455543b", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "0fcc3e94-85df-4738-adea-476fa455543b", + "x-ms-routing-request-id": "WESTUS2:20210616T002248Z:0fcc3e94-85df-4738-adea-476fa455543b" }, "ResponseBody": [] }, @@ -5628,7 +5768,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c45508c043d6e09e2d2832233077561", "x-ms-return-client-request-id": "true" }, @@ -5637,17 +5777,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:51 GMT", + "Date": "Wed, 16 Jun 2021 00:22:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c2ba47c5-a7bc-4c3f-9413-cd06033cc465", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "c2ba47c5-a7bc-4c3f-9413-cd06033cc465", - "x-ms-routing-request-id": "WESTUS2:20210519T190052Z:c2ba47c5-a7bc-4c3f-9413-cd06033cc465" + "x-ms-correlation-request-id": "c4e76f15-c934-4573-b1c0-ec69f24620ba", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "c4e76f15-c934-4573-b1c0-ec69f24620ba", + "x-ms-routing-request-id": "WESTUS2:20210616T002249Z:c4e76f15-c934-4573-b1c0-ec69f24620ba" }, "ResponseBody": [] }, @@ -5656,7 +5796,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8c503b36c5125213faf42a8265f1e0ed", "x-ms-return-client-request-id": "true" }, @@ -5665,17 +5805,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:52 GMT", + "Date": "Wed, 16 Jun 2021 00:22:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6", - "x-ms-routing-request-id": "WESTUS2:20210519T190053Z:4a0d0f11-33aa-4eb3-85f9-bd3d3abb12b6" + "x-ms-correlation-request-id": "b3c93331-9ed1-4101-8bbf-6cfda55a63dd", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "b3c93331-9ed1-4101-8bbf-6cfda55a63dd", + "x-ms-routing-request-id": "WESTUS2:20210616T002250Z:b3c93331-9ed1-4101-8bbf-6cfda55a63dd" }, "ResponseBody": [] }, @@ -5684,7 +5824,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a4f64a55ae809c2397bc1a0227c06091", "x-ms-return-client-request-id": "true" }, @@ -5693,17 +5833,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:53 GMT", + "Date": "Wed, 16 Jun 2021 00:22:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea", - "x-ms-routing-request-id": "WESTUS2:20210519T190054Z:7f9fa024-69d1-4e72-b5e7-9efd1e7f3dea" + "x-ms-correlation-request-id": "578459d1-4207-4819-8ebc-3bfb5ea86263", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "578459d1-4207-4819-8ebc-3bfb5ea86263", + "x-ms-routing-request-id": "WESTUS2:20210616T002251Z:578459d1-4207-4819-8ebc-3bfb5ea86263" }, "ResponseBody": [] }, @@ -5712,7 +5852,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd0dd5c90d2cc7583df34149da8608f0", "x-ms-return-client-request-id": "true" }, @@ -5721,17 +5861,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:54 GMT", + "Date": "Wed, 16 Jun 2021 00:22:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "11029c79-ec08-4347-b0bb-1fa11ea66945", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "11029c79-ec08-4347-b0bb-1fa11ea66945", - "x-ms-routing-request-id": "WESTUS2:20210519T190055Z:11029c79-ec08-4347-b0bb-1fa11ea66945" + "x-ms-correlation-request-id": "975d1c96-5073-43ce-b297-4864c83686eb", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "975d1c96-5073-43ce-b297-4864c83686eb", + "x-ms-routing-request-id": "WESTUS2:20210616T002252Z:975d1c96-5073-43ce-b297-4864c83686eb" }, "ResponseBody": [] }, @@ -5740,7 +5880,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8cd95f2d11088e018b3f456aa102a3a", "x-ms-return-client-request-id": "true" }, @@ -5749,17 +5889,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:55 GMT", + "Date": "Wed, 16 Jun 2021 00:22:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "80644146-914c-4759-b3f3-57eb7676adf1", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "80644146-914c-4759-b3f3-57eb7676adf1", - "x-ms-routing-request-id": "WESTUS2:20210519T190056Z:80644146-914c-4759-b3f3-57eb7676adf1" + "x-ms-correlation-request-id": "80f2de07-0252-46af-909e-0020cfc71af6", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "80f2de07-0252-46af-909e-0020cfc71af6", + "x-ms-routing-request-id": "WESTUS2:20210616T002253Z:80f2de07-0252-46af-909e-0020cfc71af6" }, "ResponseBody": [] }, @@ -5768,7 +5908,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8fb99993e3e448c1f22e668c6cd9c211", "x-ms-return-client-request-id": "true" }, @@ -5777,17 +5917,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:56 GMT", + "Date": "Wed, 16 Jun 2021 00:22:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4993e078-d7e5-402a-839a-07167deaa63c", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "4993e078-d7e5-402a-839a-07167deaa63c", - "x-ms-routing-request-id": "WESTUS2:20210519T190057Z:4993e078-d7e5-402a-839a-07167deaa63c" + "x-ms-correlation-request-id": "412b76b3-e70f-499d-9185-88856afef78e", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "412b76b3-e70f-499d-9185-88856afef78e", + "x-ms-routing-request-id": "WESTUS2:20210616T002254Z:412b76b3-e70f-499d-9185-88856afef78e" }, "ResponseBody": [] }, @@ -5796,7 +5936,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "911029b377f2f780f485e47918011c2c", "x-ms-return-client-request-id": "true" }, @@ -5805,17 +5945,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:58 GMT", + "Date": "Wed, 16 Jun 2021 00:22:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8584fed6-347d-4be8-80e6-c3b6be49ffa2", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "8584fed6-347d-4be8-80e6-c3b6be49ffa2", - "x-ms-routing-request-id": "WESTUS2:20210519T190058Z:8584fed6-347d-4be8-80e6-c3b6be49ffa2" + "x-ms-correlation-request-id": "29fb42c3-2beb-4788-b6ac-8c07f3ab3997", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "29fb42c3-2beb-4788-b6ac-8c07f3ab3997", + "x-ms-routing-request-id": "WESTUS2:20210616T002256Z:29fb42c3-2beb-4788-b6ac-8c07f3ab3997" }, "ResponseBody": [] }, @@ -5824,7 +5964,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "40b507c879cc0e0cd484f6e16b541b3e", "x-ms-return-client-request-id": "true" }, @@ -5833,17 +5973,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:59 GMT", + "Date": "Wed, 16 Jun 2021 00:22:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "22e3e975-d7a3-4664-94da-04a606cf7a84", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "22e3e975-d7a3-4664-94da-04a606cf7a84", - "x-ms-routing-request-id": "WESTUS2:20210519T190059Z:22e3e975-d7a3-4664-94da-04a606cf7a84" + "x-ms-correlation-request-id": "aa01000e-7a65-417e-8727-b08a8953e080", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "aa01000e-7a65-417e-8727-b08a8953e080", + "x-ms-routing-request-id": "WESTUS2:20210616T002257Z:aa01000e-7a65-417e-8727-b08a8953e080" }, "ResponseBody": [] }, @@ -5852,7 +5992,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80a2e2f099001b4718c29a5efe482ff0", "x-ms-return-client-request-id": "true" }, @@ -5861,17 +6001,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:00 GMT", + "Date": "Wed, 16 Jun 2021 00:22:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8e20ad52-4cb6-4e33-b095-72780dcacf22", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "8e20ad52-4cb6-4e33-b095-72780dcacf22", - "x-ms-routing-request-id": "WESTUS2:20210519T190100Z:8e20ad52-4cb6-4e33-b095-72780dcacf22" + "x-ms-correlation-request-id": "aa78cda1-ed2c-4c24-a454-698754728192", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "aa78cda1-ed2c-4c24-a454-698754728192", + "x-ms-routing-request-id": "WESTUS2:20210616T002258Z:aa78cda1-ed2c-4c24-a454-698754728192" }, "ResponseBody": [] }, @@ -5880,7 +6020,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "64c4391181233a451d01bd6e819e8ca0", "x-ms-return-client-request-id": "true" }, @@ -5889,17 +6029,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:01 GMT", + "Date": "Wed, 16 Jun 2021 00:22:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "58225aeb-aae8-4f88-862b-ff92376800de", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "58225aeb-aae8-4f88-862b-ff92376800de", - "x-ms-routing-request-id": "WESTUS2:20210519T190101Z:58225aeb-aae8-4f88-862b-ff92376800de" + "x-ms-correlation-request-id": "661f0d86-cb15-4701-bf9d-fd2bfe490c55", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "661f0d86-cb15-4701-bf9d-fd2bfe490c55", + "x-ms-routing-request-id": "WESTUS2:20210616T002259Z:661f0d86-cb15-4701-bf9d-fd2bfe490c55" }, "ResponseBody": [] }, @@ -5908,7 +6048,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3688a5699c5f2f2bbf9a270adeae0f8c", "x-ms-return-client-request-id": "true" }, @@ -5917,17 +6057,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:02 GMT", + "Date": "Wed, 16 Jun 2021 00:22:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "db0e5e58-72d6-447b-a3f4-d8ae2a600c83", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "db0e5e58-72d6-447b-a3f4-d8ae2a600c83", - "x-ms-routing-request-id": "WESTUS2:20210519T190102Z:db0e5e58-72d6-447b-a3f4-d8ae2a600c83" + "x-ms-correlation-request-id": "e461599d-59e6-45a8-af9e-0b75c89e68f0", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "e461599d-59e6-45a8-af9e-0b75c89e68f0", + "x-ms-routing-request-id": "WESTUS2:20210616T002300Z:e461599d-59e6-45a8-af9e-0b75c89e68f0" }, "ResponseBody": [] }, @@ -5936,7 +6076,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "31cf0555b78f6e1a9d6863ffdbd99a7a", "x-ms-return-client-request-id": "true" }, @@ -5945,17 +6085,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:03 GMT", + "Date": "Wed, 16 Jun 2021 00:23:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f7213860-b676-4c00-99d2-cb6ff7522e16", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "f7213860-b676-4c00-99d2-cb6ff7522e16", - "x-ms-routing-request-id": "WESTUS2:20210519T190103Z:f7213860-b676-4c00-99d2-cb6ff7522e16" + "x-ms-correlation-request-id": "a589a394-d048-4430-9f84-a29d03456b72", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "a589a394-d048-4430-9f84-a29d03456b72", + "x-ms-routing-request-id": "WESTUS2:20210616T002301Z:a589a394-d048-4430-9f84-a29d03456b72" }, "ResponseBody": [] }, @@ -5964,7 +6104,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58f4f935f9bf75910d95a5895a3a5b6e", "x-ms-return-client-request-id": "true" }, @@ -5973,17 +6113,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:04 GMT", + "Date": "Wed, 16 Jun 2021 00:23:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b606becb-11d2-47df-8af9-57007b2d8c78", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "b606becb-11d2-47df-8af9-57007b2d8c78", - "x-ms-routing-request-id": "WESTUS2:20210519T190104Z:b606becb-11d2-47df-8af9-57007b2d8c78" + "x-ms-correlation-request-id": "0ed4fca7-b91a-4abf-9446-170affc9f840", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "0ed4fca7-b91a-4abf-9446-170affc9f840", + "x-ms-routing-request-id": "WESTUS2:20210616T002302Z:0ed4fca7-b91a-4abf-9446-170affc9f840" }, "ResponseBody": [] }, @@ -5992,7 +6132,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b1931f15bceb2118b1998f6392c53e6", "x-ms-return-client-request-id": "true" }, @@ -6001,17 +6141,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:05 GMT", + "Date": "Wed, 16 Jun 2021 00:23:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0680dd8f-8f06-4458-b071-ea4d651799ad", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "0680dd8f-8f06-4458-b071-ea4d651799ad", - "x-ms-routing-request-id": "WESTUS2:20210519T190106Z:0680dd8f-8f06-4458-b071-ea4d651799ad" + "x-ms-correlation-request-id": "e2e5a890-eec0-47d8-a734-5759eda76044", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "e2e5a890-eec0-47d8-a734-5759eda76044", + "x-ms-routing-request-id": "WESTUS2:20210616T002303Z:e2e5a890-eec0-47d8-a734-5759eda76044" }, "ResponseBody": [] }, @@ -6020,7 +6160,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e5d4ad00b6b95bcc745a23fa11911462", "x-ms-return-client-request-id": "true" }, @@ -6029,17 +6169,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:06 GMT", + "Date": "Wed, 16 Jun 2021 00:23:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6be4b6e2-044e-415f-aaff-0526747b6fc8", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "6be4b6e2-044e-415f-aaff-0526747b6fc8", - "x-ms-routing-request-id": "WESTUS2:20210519T190107Z:6be4b6e2-044e-415f-aaff-0526747b6fc8" + "x-ms-correlation-request-id": "95408aae-a486-4fde-ad29-2118305e129f", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "95408aae-a486-4fde-ad29-2118305e129f", + "x-ms-routing-request-id": "WESTUS2:20210616T002304Z:95408aae-a486-4fde-ad29-2118305e129f" }, "ResponseBody": [] }, @@ -6048,7 +6188,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa0df40d1ec0d9abe841cda6609a3ce1", "x-ms-return-client-request-id": "true" }, @@ -6057,17 +6197,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:07 GMT", + "Date": "Wed, 16 Jun 2021 00:23:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a4d7ae11-1fb7-47b6-b8d0-d7e052509777", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "a4d7ae11-1fb7-47b6-b8d0-d7e052509777", - "x-ms-routing-request-id": "WESTUS2:20210519T190108Z:a4d7ae11-1fb7-47b6-b8d0-d7e052509777" + "x-ms-correlation-request-id": "e9b6e6c3-fba2-484b-a53f-7812c9cd64c8", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "e9b6e6c3-fba2-484b-a53f-7812c9cd64c8", + "x-ms-routing-request-id": "WESTUS2:20210616T002305Z:e9b6e6c3-fba2-484b-a53f-7812c9cd64c8" }, "ResponseBody": [] }, @@ -6076,7 +6216,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ac89be4175653ab464bd07743817a0fa", "x-ms-return-client-request-id": "true" }, @@ -6085,17 +6225,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:08 GMT", + "Date": "Wed, 16 Jun 2021 00:23:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "93a4a004-ca7f-4aeb-8a31-5e26daf26ce6", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "93a4a004-ca7f-4aeb-8a31-5e26daf26ce6", - "x-ms-routing-request-id": "WESTUS2:20210519T190109Z:93a4a004-ca7f-4aeb-8a31-5e26daf26ce6" + "x-ms-correlation-request-id": "34f35fab-7474-4710-8b16-fa20520fb901", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "34f35fab-7474-4710-8b16-fa20520fb901", + "x-ms-routing-request-id": "WESTUS2:20210616T002306Z:34f35fab-7474-4710-8b16-fa20520fb901" }, "ResponseBody": [] }, @@ -6104,7 +6244,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "44e93604a81ee12502fbfd78e925fad9", "x-ms-return-client-request-id": "true" }, @@ -6113,17 +6253,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:09 GMT", + "Date": "Wed, 16 Jun 2021 00:23:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a5a01cab-37bf-4c49-9d50-045c836822e8", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "a5a01cab-37bf-4c49-9d50-045c836822e8", - "x-ms-routing-request-id": "WESTUS2:20210519T190110Z:a5a01cab-37bf-4c49-9d50-045c836822e8" + "x-ms-correlation-request-id": "cabd6542-6621-4824-a048-fb07396f78aa", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "cabd6542-6621-4824-a048-fb07396f78aa", + "x-ms-routing-request-id": "WESTUS2:20210616T002307Z:cabd6542-6621-4824-a048-fb07396f78aa" }, "ResponseBody": [] }, @@ -6132,7 +6272,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "53b8411e680897fc3fd245021736a1d1", "x-ms-return-client-request-id": "true" }, @@ -6141,17 +6281,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:10 GMT", + "Date": "Wed, 16 Jun 2021 00:23:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ef29654b-3db2-4552-a87c-f60ebd4ca686", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "ef29654b-3db2-4552-a87c-f60ebd4ca686", - "x-ms-routing-request-id": "WESTUS2:20210519T190111Z:ef29654b-3db2-4552-a87c-f60ebd4ca686" + "x-ms-correlation-request-id": "c094dc7f-2a02-4cb3-8195-858172b59677", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c094dc7f-2a02-4cb3-8195-858172b59677", + "x-ms-routing-request-id": "WESTUS2:20210616T002308Z:c094dc7f-2a02-4cb3-8195-858172b59677" }, "ResponseBody": [] }, @@ -6160,7 +6300,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2aa1d3a0f7b099c298a7aa6a783c513f", "x-ms-return-client-request-id": "true" }, @@ -6169,17 +6309,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:11 GMT", + "Date": "Wed, 16 Jun 2021 00:23:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "03990710-7287-4390-8761-01a57018c6c0", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "03990710-7287-4390-8761-01a57018c6c0", - "x-ms-routing-request-id": "WESTUS2:20210519T190112Z:03990710-7287-4390-8761-01a57018c6c0" + "x-ms-correlation-request-id": "11cfc289-b001-4f58-ba36-dc6754abe45f", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "11cfc289-b001-4f58-ba36-dc6754abe45f", + "x-ms-routing-request-id": "WESTUS2:20210616T002309Z:11cfc289-b001-4f58-ba36-dc6754abe45f" }, "ResponseBody": [] }, @@ -6188,7 +6328,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6562dc24d5e9cf23952054b6223cacb", "x-ms-return-client-request-id": "true" }, @@ -6197,17 +6337,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:12 GMT", + "Date": "Wed, 16 Jun 2021 00:23:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d99058a7-9ab4-4988-9ee3-2ff435072ddb", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "d99058a7-9ab4-4988-9ee3-2ff435072ddb", - "x-ms-routing-request-id": "WESTUS2:20210519T190113Z:d99058a7-9ab4-4988-9ee3-2ff435072ddb" + "x-ms-correlation-request-id": "11d5331e-9e48-4692-8713-8156ea22b324", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "11d5331e-9e48-4692-8713-8156ea22b324", + "x-ms-routing-request-id": "WESTUS2:20210616T002310Z:11d5331e-9e48-4692-8713-8156ea22b324" }, "ResponseBody": [] }, @@ -6216,7 +6356,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15d72c59d08427297e1fba60be911e03", "x-ms-return-client-request-id": "true" }, @@ -6225,17 +6365,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:13 GMT", + "Date": "Wed, 16 Jun 2021 00:23:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1fe72150-5c98-4c48-a079-a015c04286d9", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "1fe72150-5c98-4c48-a079-a015c04286d9", - "x-ms-routing-request-id": "WESTUS2:20210519T190114Z:1fe72150-5c98-4c48-a079-a015c04286d9" + "x-ms-correlation-request-id": "c5c7836a-9f03-42e1-9f1f-1db46175caa0", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "c5c7836a-9f03-42e1-9f1f-1db46175caa0", + "x-ms-routing-request-id": "WESTUS2:20210616T002311Z:c5c7836a-9f03-42e1-9f1f-1db46175caa0" }, "ResponseBody": [] }, @@ -6244,7 +6384,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e93f0680abe05372e105f05df2773675", "x-ms-return-client-request-id": "true" }, @@ -6253,17 +6393,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:14 GMT", + "Date": "Wed, 16 Jun 2021 00:23:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "da1defa1-137d-4630-ac53-de254b19fe43", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "da1defa1-137d-4630-ac53-de254b19fe43", - "x-ms-routing-request-id": "WESTUS2:20210519T190115Z:da1defa1-137d-4630-ac53-de254b19fe43" + "x-ms-correlation-request-id": "debf948b-8b24-48bc-a721-9e78c77570cc", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "debf948b-8b24-48bc-a721-9e78c77570cc", + "x-ms-routing-request-id": "WESTUS2:20210616T002312Z:debf948b-8b24-48bc-a721-9e78c77570cc" }, "ResponseBody": [] }, @@ -6272,7 +6412,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4c11dedc3c65f2bb042f783f9391dda7", "x-ms-return-client-request-id": "true" }, @@ -6281,17 +6421,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:15 GMT", + "Date": "Wed, 16 Jun 2021 00:23:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d1a2ed91-9781-45d9-a8ea-2059c9d4cefb", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "d1a2ed91-9781-45d9-a8ea-2059c9d4cefb", - "x-ms-routing-request-id": "WESTUS2:20210519T190116Z:d1a2ed91-9781-45d9-a8ea-2059c9d4cefb" + "x-ms-correlation-request-id": "f08a05a8-2116-48e6-81fc-80b7aa362f96", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "f08a05a8-2116-48e6-81fc-80b7aa362f96", + "x-ms-routing-request-id": "WESTUS2:20210616T002313Z:f08a05a8-2116-48e6-81fc-80b7aa362f96" }, "ResponseBody": [] }, @@ -6300,7 +6440,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5cca0134e1e3aeeab983347edfcb3407", "x-ms-return-client-request-id": "true" }, @@ -6309,17 +6449,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:16 GMT", + "Date": "Wed, 16 Jun 2021 00:23:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "49569891-4aa2-437c-94ed-338a137295e0", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "49569891-4aa2-437c-94ed-338a137295e0", - "x-ms-routing-request-id": "WESTUS2:20210519T190117Z:49569891-4aa2-437c-94ed-338a137295e0" + "x-ms-correlation-request-id": "566306ff-c9a8-4a4e-ab2f-6288c07e0a72", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "566306ff-c9a8-4a4e-ab2f-6288c07e0a72", + "x-ms-routing-request-id": "WESTUS2:20210616T002314Z:566306ff-c9a8-4a4e-ab2f-6288c07e0a72" }, "ResponseBody": [] }, @@ -6328,7 +6468,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "df8444e9d280449d4b4de5b13333bf4f", "x-ms-return-client-request-id": "true" }, @@ -6337,17 +6477,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:18 GMT", + "Date": "Wed, 16 Jun 2021 00:23:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f01e95cc-c226-49a0-8990-378afbc4ec9a", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "f01e95cc-c226-49a0-8990-378afbc4ec9a", - "x-ms-routing-request-id": "WESTUS2:20210519T190118Z:f01e95cc-c226-49a0-8990-378afbc4ec9a" + "x-ms-correlation-request-id": "5f097087-5851-4bee-8aa7-4783679c038c", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "5f097087-5851-4bee-8aa7-4783679c038c", + "x-ms-routing-request-id": "WESTUS2:20210616T002315Z:5f097087-5851-4bee-8aa7-4783679c038c" }, "ResponseBody": [] }, @@ -6356,7 +6496,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0294827daacfb91f36392e1073c1238", "x-ms-return-client-request-id": "true" }, @@ -6365,17 +6505,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:19 GMT", + "Date": "Wed, 16 Jun 2021 00:23:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "63ac71bf-6940-43af-8bda-e52bf1cc1cb1", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "63ac71bf-6940-43af-8bda-e52bf1cc1cb1", - "x-ms-routing-request-id": "WESTUS2:20210519T190119Z:63ac71bf-6940-43af-8bda-e52bf1cc1cb1" + "x-ms-correlation-request-id": "ce8c16d8-8f82-4ab0-8b58-1a55b0905f26", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "ce8c16d8-8f82-4ab0-8b58-1a55b0905f26", + "x-ms-routing-request-id": "WESTUS2:20210616T002316Z:ce8c16d8-8f82-4ab0-8b58-1a55b0905f26" }, "ResponseBody": [] }, @@ -6384,7 +6524,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5570fafe0c622764851096fb397b86", "x-ms-return-client-request-id": "true" }, @@ -6393,17 +6533,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:20 GMT", + "Date": "Wed, 16 Jun 2021 00:23:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "78961952-8837-4d0f-b6d2-de0557540e9c", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "78961952-8837-4d0f-b6d2-de0557540e9c", - "x-ms-routing-request-id": "WESTUS2:20210519T190120Z:78961952-8837-4d0f-b6d2-de0557540e9c" + "x-ms-correlation-request-id": "a2b0689e-ab02-4d81-a541-bee8d9246632", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "a2b0689e-ab02-4d81-a541-bee8d9246632", + "x-ms-routing-request-id": "WESTUS2:20210616T002317Z:a2b0689e-ab02-4d81-a541-bee8d9246632" }, "ResponseBody": [] }, @@ -6412,7 +6552,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9756e4c344a20f5bb289eb1c3fbc3d0f", "x-ms-return-client-request-id": "true" }, @@ -6421,17 +6561,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:21 GMT", + "Date": "Wed, 16 Jun 2021 00:23:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9b4a6521-ad46-4d8b-96b9-09134acb0742", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "9b4a6521-ad46-4d8b-96b9-09134acb0742", - "x-ms-routing-request-id": "WESTUS2:20210519T190121Z:9b4a6521-ad46-4d8b-96b9-09134acb0742" + "x-ms-correlation-request-id": "322700fe-7fc2-46d7-ba8c-9eef4f30de10", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "322700fe-7fc2-46d7-ba8c-9eef4f30de10", + "x-ms-routing-request-id": "WESTUS2:20210616T002318Z:322700fe-7fc2-46d7-ba8c-9eef4f30de10" }, "ResponseBody": [] }, @@ -6440,7 +6580,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c2b7ad3b71dd294320c78c26c9fbffba", "x-ms-return-client-request-id": "true" }, @@ -6449,17 +6589,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:22 GMT", + "Date": "Wed, 16 Jun 2021 00:23:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1b03930b-21e2-4348-881c-63318cb8e8e4", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "1b03930b-21e2-4348-881c-63318cb8e8e4", - "x-ms-routing-request-id": "WESTUS2:20210519T190122Z:1b03930b-21e2-4348-881c-63318cb8e8e4" + "x-ms-correlation-request-id": "82ce9646-3f9b-48d9-9c8f-53139e3d2d81", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "82ce9646-3f9b-48d9-9c8f-53139e3d2d81", + "x-ms-routing-request-id": "WESTUS2:20210616T002319Z:82ce9646-3f9b-48d9-9c8f-53139e3d2d81" }, "ResponseBody": [] }, @@ -6468,7 +6608,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "221d0ce87ae5b59615469b83120b22a7", "x-ms-return-client-request-id": "true" }, @@ -6477,17 +6617,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:23 GMT", + "Date": "Wed, 16 Jun 2021 00:23:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "633766e4-1eee-472c-89c3-8021c3f4c67f", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "633766e4-1eee-472c-89c3-8021c3f4c67f", - "x-ms-routing-request-id": "WESTUS2:20210519T190123Z:633766e4-1eee-472c-89c3-8021c3f4c67f" + "x-ms-correlation-request-id": "7831923c-713f-4eb8-a242-2081549de085", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "7831923c-713f-4eb8-a242-2081549de085", + "x-ms-routing-request-id": "WESTUS2:20210616T002320Z:7831923c-713f-4eb8-a242-2081549de085" }, "ResponseBody": [] }, @@ -6496,7 +6636,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4e5a0148b88252a8a12d76dab83545b6", "x-ms-return-client-request-id": "true" }, @@ -6505,17 +6645,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:24 GMT", + "Date": "Wed, 16 Jun 2021 00:23:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b23d3ac3-4b65-427e-950e-38c5db5e3d8c", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "b23d3ac3-4b65-427e-950e-38c5db5e3d8c", - "x-ms-routing-request-id": "WESTUS2:20210519T190124Z:b23d3ac3-4b65-427e-950e-38c5db5e3d8c" + "x-ms-correlation-request-id": "819c30c9-a275-405d-9faf-65ef5b812723", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "819c30c9-a275-405d-9faf-65ef5b812723", + "x-ms-routing-request-id": "WESTUS2:20210616T002321Z:819c30c9-a275-405d-9faf-65ef5b812723" }, "ResponseBody": [] }, @@ -6524,7 +6664,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3334318a1a9fc0291601ad97d5bf1615", "x-ms-return-client-request-id": "true" }, @@ -6533,17 +6673,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:25 GMT", + "Date": "Wed, 16 Jun 2021 00:23:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c289175c-2a07-426a-8b72-a720c5d7e1f3", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "c289175c-2a07-426a-8b72-a720c5d7e1f3", - "x-ms-routing-request-id": "WESTUS2:20210519T190125Z:c289175c-2a07-426a-8b72-a720c5d7e1f3" + "x-ms-correlation-request-id": "4e6ffbf0-975a-4ec0-89a7-2f74a565fae3", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4e6ffbf0-975a-4ec0-89a7-2f74a565fae3", + "x-ms-routing-request-id": "WESTUS2:20210616T002322Z:4e6ffbf0-975a-4ec0-89a7-2f74a565fae3" }, "ResponseBody": [] }, @@ -6552,7 +6692,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c8dde4a4b0a12f3763ca81b804bbfcdf", "x-ms-return-client-request-id": "true" }, @@ -6561,17 +6701,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:26 GMT", + "Date": "Wed, 16 Jun 2021 00:23:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "53b3ddfb-6444-4050-a1e5-05273f976e60", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "53b3ddfb-6444-4050-a1e5-05273f976e60", - "x-ms-routing-request-id": "WESTUS2:20210519T190126Z:53b3ddfb-6444-4050-a1e5-05273f976e60" + "x-ms-correlation-request-id": "016d77e4-5bdd-4179-9861-4bc7dccf9a93", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "016d77e4-5bdd-4179-9861-4bc7dccf9a93", + "x-ms-routing-request-id": "WESTUS2:20210616T002323Z:016d77e4-5bdd-4179-9861-4bc7dccf9a93" }, "ResponseBody": [] }, @@ -6580,7 +6720,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1f9e400efd62d08d79a37800b117ce1", "x-ms-return-client-request-id": "true" }, @@ -6589,17 +6729,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:27 GMT", + "Date": "Wed, 16 Jun 2021 00:23:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c0631145-d19a-4d77-9dfa-c081ebd5c3a3", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "c0631145-d19a-4d77-9dfa-c081ebd5c3a3", - "x-ms-routing-request-id": "WESTUS2:20210519T190127Z:c0631145-d19a-4d77-9dfa-c081ebd5c3a3" + "x-ms-correlation-request-id": "04bb5deb-e544-49ac-832f-a3cc71fb0909", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "04bb5deb-e544-49ac-832f-a3cc71fb0909", + "x-ms-routing-request-id": "WESTUS2:20210616T002325Z:04bb5deb-e544-49ac-832f-a3cc71fb0909" }, "ResponseBody": [] }, @@ -6608,7 +6748,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d33660167d57d915f904cfd49871bc5b", "x-ms-return-client-request-id": "true" }, @@ -6617,17 +6757,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:28 GMT", + "Date": "Wed, 16 Jun 2021 00:23:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-request-id": "a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a", - "x-ms-routing-request-id": "WESTUS2:20210519T190128Z:a0a3a4b2-a26e-4dfe-a88e-e9ec9816ec9a" + "x-ms-correlation-request-id": "c84af04a-9aad-44b0-86be-f9dfa69d98d9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "c84af04a-9aad-44b0-86be-f9dfa69d98d9", + "x-ms-routing-request-id": "WESTUS2:20210616T002326Z:c84af04a-9aad-44b0-86be-f9dfa69d98d9" }, "ResponseBody": [] }, @@ -6636,7 +6776,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f196cd0435c6b53edcaff00679b62452", "x-ms-return-client-request-id": "true" }, @@ -6645,17 +6785,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:29 GMT", + "Date": "Wed, 16 Jun 2021 00:23:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5d5345da-b7c6-4189-8d76-81109f4c160e", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "5d5345da-b7c6-4189-8d76-81109f4c160e", - "x-ms-routing-request-id": "WESTUS2:20210519T190129Z:5d5345da-b7c6-4189-8d76-81109f4c160e" + "x-ms-correlation-request-id": "1f1fbc53-c80a-4009-b949-ce63619c0f0b", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "1f1fbc53-c80a-4009-b949-ce63619c0f0b", + "x-ms-routing-request-id": "WESTUS2:20210616T002327Z:1f1fbc53-c80a-4009-b949-ce63619c0f0b" }, "ResponseBody": [] }, @@ -6664,23 +6804,1563 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a3a1a04e28848388ce1fe7d21f339566", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2b48cdd7-73d5-4e94-99b2-8dce523cd17c", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "2b48cdd7-73d5-4e94-99b2-8dce523cd17c", + "x-ms-routing-request-id": "WESTUS2:20210616T002328Z:2b48cdd7-73d5-4e94-99b2-8dce523cd17c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d7cdcde8b7be11b2281f7a78d0f6042", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "82eccde7-1ff7-489f-9b62-3fcaff0e8be0", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "82eccde7-1ff7-489f-9b62-3fcaff0e8be0", + "x-ms-routing-request-id": "WESTUS2:20210616T002329Z:82eccde7-1ff7-489f-9b62-3fcaff0e8be0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8867ddf18d0dbd6451222a64e6c95a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d1f96070-cb73-46ee-bcc6-a30b9f1300af", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "d1f96070-cb73-46ee-bcc6-a30b9f1300af", + "x-ms-routing-request-id": "WESTUS2:20210616T002330Z:d1f96070-cb73-46ee-bcc6-a30b9f1300af" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9d28891ae73ac2d785c0810331e0f6bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 19:01:30 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:30 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7440a168-1c19-45fa-9ff0-c2cc78719314", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "7440a168-1c19-45fa-9ff0-c2cc78719314", - "x-ms-routing-request-id": "WESTUS2:20210519T190130Z:7440a168-1c19-45fa-9ff0-c2cc78719314" + "x-ms-correlation-request-id": "d651d262-ff3e-41e2-b63e-163175aab1aa", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "d651d262-ff3e-41e2-b63e-163175aab1aa", + "x-ms-routing-request-id": "WESTUS2:20210616T002331Z:d651d262-ff3e-41e2-b63e-163175aab1aa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a2f2a4bf9cadc59605a0f868697492b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c196d18d-d64f-4f47-98df-dbf01a56ba83", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "c196d18d-d64f-4f47-98df-dbf01a56ba83", + "x-ms-routing-request-id": "WESTUS2:20210616T002332Z:c196d18d-d64f-4f47-98df-dbf01a56ba83" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "038d4eebc3e6f808a5c3731097d3aa64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "55df92fe-271a-488a-8b39-0cbe3760844b", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "55df92fe-271a-488a-8b39-0cbe3760844b", + "x-ms-routing-request-id": "WESTUS2:20210616T002333Z:55df92fe-271a-488a-8b39-0cbe3760844b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a9e6621cf27a7efbf263979aee6e5810", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6814d15e-d088-4cc5-be6e-be8581a268d7", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "6814d15e-d088-4cc5-be6e-be8581a268d7", + "x-ms-routing-request-id": "WESTUS2:20210616T002334Z:6814d15e-d088-4cc5-be6e-be8581a268d7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e318cb2df253fcd99cf9fce928862d32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7bf395f6-5dd1-42a4-8964-0f88942bb793", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "7bf395f6-5dd1-42a4-8964-0f88942bb793", + "x-ms-routing-request-id": "WESTUS2:20210616T002335Z:7bf395f6-5dd1-42a4-8964-0f88942bb793" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "074c93f6e98df93a530e10832b6e0937", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b61cecf9-d49a-4a38-b226-849d987f325f", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "b61cecf9-d49a-4a38-b226-849d987f325f", + "x-ms-routing-request-id": "WESTUS2:20210616T002336Z:b61cecf9-d49a-4a38-b226-849d987f325f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cbe2636ac6ba291189ea0d81f511566c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "14d8719e-6ce7-4e42-b5b3-2924308ca85b", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "14d8719e-6ce7-4e42-b5b3-2924308ca85b", + "x-ms-routing-request-id": "WESTUS2:20210616T002337Z:14d8719e-6ce7-4e42-b5b3-2924308ca85b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5ba3653551224483901e9044e155d02e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3ac1076b-729e-4e97-98d7-b2468861089f", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "3ac1076b-729e-4e97-98d7-b2468861089f", + "x-ms-routing-request-id": "WESTUS2:20210616T002338Z:3ac1076b-729e-4e97-98d7-b2468861089f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c47ec5ef61a32f7781227da2dbb90341", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5ffff060-f63f-4902-acc1-533dae82494d", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "5ffff060-f63f-4902-acc1-533dae82494d", + "x-ms-routing-request-id": "WESTUS2:20210616T002339Z:5ffff060-f63f-4902-acc1-533dae82494d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c64ea4b8aeca1815e09e3b9b36cc4733", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1113367c-90b3-4ed7-af04-f736b2a3f48d", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "1113367c-90b3-4ed7-af04-f736b2a3f48d", + "x-ms-routing-request-id": "WESTUS2:20210616T002340Z:1113367c-90b3-4ed7-af04-f736b2a3f48d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3091df199192d3c8ee74daffd4e068d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c4798a99-d331-446c-8d5f-0b04e9bd7676", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "c4798a99-d331-446c-8d5f-0b04e9bd7676", + "x-ms-routing-request-id": "WESTUS2:20210616T002341Z:c4798a99-d331-446c-8d5f-0b04e9bd7676" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d8c4e1b0a074163af65e40526dbf8b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2c353d56-1888-498f-a754-de8c8622cb79", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "2c353d56-1888-498f-a754-de8c8622cb79", + "x-ms-routing-request-id": "WESTUS2:20210616T002342Z:2c353d56-1888-498f-a754-de8c8622cb79" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fc894adad22826aedb7ad756d31544ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6dd48a9f-a88d-4b0e-aedc-e50f0eea12f5", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "6dd48a9f-a88d-4b0e-aedc-e50f0eea12f5", + "x-ms-routing-request-id": "WESTUS2:20210616T002343Z:6dd48a9f-a88d-4b0e-aedc-e50f0eea12f5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e78063360a400e2c7b4f802cacc3ad12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "05ffa8bb-c50a-4360-9daf-9921df6bf177", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "05ffa8bb-c50a-4360-9daf-9921df6bf177", + "x-ms-routing-request-id": "WESTUS2:20210616T002344Z:05ffa8bb-c50a-4360-9daf-9921df6bf177" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8a24257b6c5749aea066618d320d6d9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "61de5702-fedd-4964-aaf8-e80a0454f0f8", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "61de5702-fedd-4964-aaf8-e80a0454f0f8", + "x-ms-routing-request-id": "WESTUS2:20210616T002345Z:61de5702-fedd-4964-aaf8-e80a0454f0f8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c2cfe521115bd0741d7a80d852827918", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5abeb8dc-0e68-446d-ac44-fae1d835541d", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "5abeb8dc-0e68-446d-ac44-fae1d835541d", + "x-ms-routing-request-id": "WESTUS2:20210616T002346Z:5abeb8dc-0e68-446d-ac44-fae1d835541d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aedac5ccbaf1c9a8b53747daa89fdb6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c6d7db30-757e-414b-b24b-ded38bc3eb37", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "c6d7db30-757e-414b-b24b-ded38bc3eb37", + "x-ms-routing-request-id": "WESTUS2:20210616T002347Z:c6d7db30-757e-414b-b24b-ded38bc3eb37" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c70be6e1eaf46ab7b1546cddebd5f61e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2275c5b7-3730-436e-a7cc-f20081a1d48d", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "2275c5b7-3730-436e-a7cc-f20081a1d48d", + "x-ms-routing-request-id": "WESTUS2:20210616T002348Z:2275c5b7-3730-436e-a7cc-f20081a1d48d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6dc049ecbf3266a83c050d23c99a287e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "56d5fede-a4c2-46e8-89c6-e4b256f10caa", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "56d5fede-a4c2-46e8-89c6-e4b256f10caa", + "x-ms-routing-request-id": "WESTUS2:20210616T002349Z:56d5fede-a4c2-46e8-89c6-e4b256f10caa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6bf7129eb176e1230d70fd9c4ecbdddf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8162000f-62bd-4679-87ef-db3e6ee19d36", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "8162000f-62bd-4679-87ef-db3e6ee19d36", + "x-ms-routing-request-id": "WESTUS2:20210616T002350Z:8162000f-62bd-4679-87ef-db3e6ee19d36" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5eed29406dde223b3da58befdd93a017", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ad8c5b16-5deb-455b-a8e5-1d8b5b508fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "ad8c5b16-5deb-455b-a8e5-1d8b5b508fa7", + "x-ms-routing-request-id": "WESTUS2:20210616T002351Z:ad8c5b16-5deb-455b-a8e5-1d8b5b508fa7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d93eed2c8bde3ba726de60c1c20c1771", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1166a8f5-fc74-4ee5-8c7b-315ba7494cdd", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "1166a8f5-fc74-4ee5-8c7b-315ba7494cdd", + "x-ms-routing-request-id": "WESTUS2:20210616T002352Z:1166a8f5-fc74-4ee5-8c7b-315ba7494cdd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9fe32d27c9ac30a0d6d52ed126340479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3417f6ad-d21e-4844-b11c-a09032cb773f", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "3417f6ad-d21e-4844-b11c-a09032cb773f", + "x-ms-routing-request-id": "WESTUS2:20210616T002354Z:3417f6ad-d21e-4844-b11c-a09032cb773f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6070e5cf038cb50182b138ff0d7a5f31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "02dbc5c7-d00b-45e9-9068-b0714c31168e", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "02dbc5c7-d00b-45e9-9068-b0714c31168e", + "x-ms-routing-request-id": "WESTUS2:20210616T002355Z:02dbc5c7-d00b-45e9-9068-b0714c31168e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0c7198d01b0626a4d0e03095cd615f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "19a19207-b8ee-4a64-ae4e-4a965620b088", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "19a19207-b8ee-4a64-ae4e-4a965620b088", + "x-ms-routing-request-id": "WESTUS2:20210616T002356Z:19a19207-b8ee-4a64-ae4e-4a965620b088" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dcf1e6dab69b23e42b2e1dfa91a0225b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3fcbb620-2465-4daf-a1e1-34f3162425f8", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "3fcbb620-2465-4daf-a1e1-34f3162425f8", + "x-ms-routing-request-id": "WESTUS2:20210616T002357Z:3fcbb620-2465-4daf-a1e1-34f3162425f8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c43fc75536ccec97b0e137e00f858ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bd050dcc-b7ef-42ec-a864-ab971141ed5d", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "bd050dcc-b7ef-42ec-a864-ab971141ed5d", + "x-ms-routing-request-id": "WESTUS2:20210616T002358Z:bd050dcc-b7ef-42ec-a864-ab971141ed5d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2625469c8388d69635a48481e46fd1ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "091b4103-0b1e-4e88-89b4-438223ebe989", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "091b4103-0b1e-4e88-89b4-438223ebe989", + "x-ms-routing-request-id": "WESTUS2:20210616T002359Z:091b4103-0b1e-4e88-89b4-438223ebe989" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5f93a7eb089286851d23608da3662333", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "59ac24e6-1a53-4bf3-9591-b25a792b2095", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "59ac24e6-1a53-4bf3-9591-b25a792b2095", + "x-ms-routing-request-id": "WESTUS2:20210616T002400Z:59ac24e6-1a53-4bf3-9591-b25a792b2095" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a5e71d5fc7af2d3666dd7c8cf47ea0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9c3336b7-e1b7-4a29-b784-633a2e627113", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "9c3336b7-e1b7-4a29-b784-633a2e627113", + "x-ms-routing-request-id": "WESTUS2:20210616T002401Z:9c3336b7-e1b7-4a29-b784-633a2e627113" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5893663cf8649419c09f0964220833ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3913d7e8-9210-43c8-b1b9-137e59822788", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "3913d7e8-9210-43c8-b1b9-137e59822788", + "x-ms-routing-request-id": "WESTUS2:20210616T002402Z:3913d7e8-9210-43c8-b1b9-137e59822788" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "72ab51808611ee32d4a1f82531bdb6d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "32e27e81-03ef-4247-a415-f2e226a81430", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "32e27e81-03ef-4247-a415-f2e226a81430", + "x-ms-routing-request-id": "WESTUS2:20210616T002403Z:32e27e81-03ef-4247-a415-f2e226a81430" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d505439cad3ddce58ca89daf26ed05e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "943025d9-b19b-420e-bfe2-158e981f242a", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "943025d9-b19b-420e-bfe2-158e981f242a", + "x-ms-routing-request-id": "WESTUS2:20210616T002404Z:943025d9-b19b-420e-bfe2-158e981f242a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d470839779bb5fb33a484c2fff36203", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ca0506d6-ee9a-42cc-814d-2a363806d0b0", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "ca0506d6-ee9a-42cc-814d-2a363806d0b0", + "x-ms-routing-request-id": "WESTUS2:20210616T002405Z:ca0506d6-ee9a-42cc-814d-2a363806d0b0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cd2b34e8f6b8b6fb82ce1a46fc57fc65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a873f86b-875c-4d62-be6d-161b79a2a3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "a873f86b-875c-4d62-be6d-161b79a2a3c9", + "x-ms-routing-request-id": "WESTUS2:20210616T002406Z:a873f86b-875c-4d62-be6d-161b79a2a3c9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28eb9ad13875c139599b092e460cdd64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f5fc9b0f-effc-4938-9140-6899ff6c6704", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "f5fc9b0f-effc-4938-9140-6899ff6c6704", + "x-ms-routing-request-id": "WESTUS2:20210616T002407Z:f5fc9b0f-effc-4938-9140-6899ff6c6704" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bef28667024343a50c91fbcd5db4b8db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "076292d3-f024-4835-bb2c-dd5d56f7397b", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "076292d3-f024-4835-bb2c-dd5d56f7397b", + "x-ms-routing-request-id": "WESTUS2:20210616T002408Z:076292d3-f024-4835-bb2c-dd5d56f7397b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "64f11ea73907af8efb69741ceccc6f76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "114a61aa-07b3-45b4-9cc8-13f342754bd8", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "114a61aa-07b3-45b4-9cc8-13f342754bd8", + "x-ms-routing-request-id": "WESTUS2:20210616T002409Z:114a61aa-07b3-45b4-9cc8-13f342754bd8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "76dfb5f13e65cf22f4a81ce43d6c64a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0065f8c3-a361-4f9b-9438-b97d4b4bedab", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "0065f8c3-a361-4f9b-9438-b97d4b4bedab", + "x-ms-routing-request-id": "WESTUS2:20210616T002410Z:0065f8c3-a361-4f9b-9438-b97d4b4bedab" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28872de2781a2d5cf842c2d98e895740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2271042f-8c26-4cb4-a833-4b2b0e66fe7c", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "2271042f-8c26-4cb4-a833-4b2b0e66fe7c", + "x-ms-routing-request-id": "WESTUS2:20210616T002411Z:2271042f-8c26-4cb4-a833-4b2b0e66fe7c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7db852141d46976fb226f5f1da9728f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6722f6f5-bb91-4585-9feb-f513caf6307d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "6722f6f5-bb91-4585-9feb-f513caf6307d", + "x-ms-routing-request-id": "WESTUS2:20210616T002412Z:6722f6f5-bb91-4585-9feb-f513caf6307d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be39cf044745795b59b17e237b49406b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "56df8036-4313-4515-a81b-aaf05d2cb6ef", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "56df8036-4313-4515-a81b-aaf05d2cb6ef", + "x-ms-routing-request-id": "WESTUS2:20210616T002413Z:56df8036-4313-4515-a81b-aaf05d2cb6ef" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8c2db50bd90a0cfb71d2cf808fc0f4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d0c10fe5-4e10-4cbc-89f6-a7554ff482a7", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "d0c10fe5-4e10-4cbc-89f6-a7554ff482a7", + "x-ms-routing-request-id": "WESTUS2:20210616T002414Z:d0c10fe5-4e10-4cbc-89f6-a7554ff482a7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bed433d0984fdafa29624d23c353edb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8353bab4-bf3a-4aa5-a804-e413eaff91db", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "8353bab4-bf3a-4aa5-a804-e413eaff91db", + "x-ms-routing-request-id": "WESTUS2:20210616T002415Z:8353bab4-bf3a-4aa5-a804-e413eaff91db" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "410f04e1b9e746feff9906271b63705c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cca86792-caa7-41d4-85ad-099430aba0ad", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "cca86792-caa7-41d4-85ad-099430aba0ad", + "x-ms-routing-request-id": "WESTUS2:20210616T002416Z:cca86792-caa7-41d4-85ad-099430aba0ad" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "485230a18274b81ce1e88f2e70acdd64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0b3dcd29-c32c-435e-a69f-4d19211af2d2", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "0b3dcd29-c32c-435e-a69f-4d19211af2d2", + "x-ms-routing-request-id": "WESTUS2:20210616T002417Z:0b3dcd29-c32c-435e-a69f-4d19211af2d2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04177a30ceed1667358dbeb691d3bfc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ae02af10-6e56-484b-a786-717e00dbc07c", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "ae02af10-6e56-484b-a786-717e00dbc07c", + "x-ms-routing-request-id": "WESTUS2:20210616T002418Z:ae02af10-6e56-484b-a786-717e00dbc07c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9281f0f1a5005e3de85660fe2acfd653", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "58bc30f0-66c9-4b76-9e73-4a791fd0b352", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "58bc30f0-66c9-4b76-9e73-4a791fd0b352", + "x-ms-routing-request-id": "WESTUS2:20210616T002419Z:58bc30f0-66c9-4b76-9e73-4a791fd0b352" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a0f7a2bb6c4bd36fc93c12e6c466260d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "75809e4a-2d7d-4f50-99ea-f5dccba47f12", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "75809e4a-2d7d-4f50-99ea-f5dccba47f12", + "x-ms-routing-request-id": "WESTUS2:20210616T002420Z:75809e4a-2d7d-4f50-99ea-f5dccba47f12" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f3dc8294b2b8a643cb81b966d68eb66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1ca0eb4b-9826-4a96-ad74-e975d1386894", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "1ca0eb4b-9826-4a96-ad74-e975d1386894", + "x-ms-routing-request-id": "WESTUS2:20210616T002421Z:1ca0eb4b-9826-4a96-ad74-e975d1386894" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "effa6bb61edb847a81adc9c493579a81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d5bc94c5-c4ce-4f83-b253-4bebb3956c09", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "d5bc94c5-c4ce-4f83-b253-4bebb3956c09", + "x-ms-routing-request-id": "WESTUS2:20210616T002423Z:d5bc94c5-c4ce-4f83-b253-4bebb3956c09" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62d55230579170273e6c649250d86661", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bdffc990-a27a-4011-941d-58e8bb3dba1b", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "bdffc990-a27a-4011-941d-58e8bb3dba1b", + "x-ms-routing-request-id": "WESTUS2:20210616T002424Z:bdffc990-a27a-4011-941d-58e8bb3dba1b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg3MTItV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "582fac50376b0b324eb9fd7e81a0f7e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72c4d8b6-bb65-4714-9827-9e4cc8386f19", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "72c4d8b6-bb65-4714-9827-9e4cc8386f19", + "x-ms-routing-request-id": "WESTUS2:20210616T002425Z:72c4d8b6-bb65-4714-9827-9e4cc8386f19" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json index ccf408abbda1..f1743b0f8c35 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/StartValidateMoveResources()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e31df6369bc2be4fba0ab0bd312f6860-2a32bc669b9d9c40-00", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5746292c7b1b2b912f1aef1242e2c3f4", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:55 GMT", + "Date": "Wed, 16 Jun 2021 00:21:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f922663-1bee-4212-b2e0-f21a3d7769d6", - "x-ms-ratelimit-remaining-subscription-reads": "11628", - "x-ms-request-id": "5f922663-1bee-4212-b2e0-f21a3d7769d6", - "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:5f922663-1bee-4212-b2e0-f21a3d7769d6" + "x-ms-correlation-request-id": "2c10edd2-7353-4785-af78-362f2de72496", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "2c10edd2-7353-4785-af78-362f2de72496", + "x-ms-routing-request-id": "WESTUS2:20210616T002150Z:2c10edd2-7353-4785-af78-362f2de72496" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-dcd94e60ed74b04eb181d472e0b264f6-e8bae504358b1c4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-4ce9a69353b29f4d97084be5a453d498-b25252256a477744-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "32aed4db0329b97f36a452727b44ecfb", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:56 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eabe3f1-b97d-4b86-ac54-2017b67b7b3e", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "8eabe3f1-b97d-4b86-ac54-2017b67b7b3e", - "x-ms-routing-request-id": "WESTUS2:20210519T185956Z:8eabe3f1-b97d-4b86-ac54-2017b67b7b3e" + "x-ms-correlation-request-id": "ab340ab0-830e-4041-9e42-f4946427d734", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "ab340ab0-830e-4041-9e42-f4946427d734", + "x-ms-routing-request-id": "WESTUS2:20210616T002151Z:ab340ab0-830e-4041-9e42-f4946427d734" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5025", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0251c9bccf641042938c0f854fa2a3ba-6052c4b0dc58e740-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6f2d65d870437c43b93a90287f78499a-6d6aa08e37b2e541-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c7c046709973cd71891ec61234a5d752", "x-ms-return-client-request-id": "true" }, @@ -107,15 +110,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:56 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "798c6215-844a-4c1a-bc12-bb4b5b096ac6", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "798c6215-844a-4c1a-bc12-bb4b5b096ac6", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:798c6215-844a-4c1a-bc12-bb4b5b096ac6" + "x-ms-correlation-request-id": "fb6958bd-896c-4069-a097-630d3ead2235", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "fb6958bd-896c-4069-a097-630d3ead2235", + "x-ms-routing-request-id": "WESTUS2:20210616T002151Z:fb6958bd-896c-4069-a097-630d3ead2235" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1194", @@ -134,7 +137,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-606c26ea909acb4a8c21380a1196598c-4378c70ffbed504a-00", + "traceparent": "00-b498efd61ec9004c8d41c0332e7b8279-97ae4de72aee7842-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c9b0c8525029ec6e5d73fb8b4d50216", "x-ms-return-client-request-id": "true" @@ -143,17 +146,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:56 GMT", + "Date": "Wed, 16 Jun 2021 00:21:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e41e56c0-42e0-4a39-a747-0fe13b80e0cf", - "x-ms-ratelimit-remaining-subscription-reads": "11627", - "x-ms-request-id": "e41e56c0-42e0-4a39-a747-0fe13b80e0cf", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:e41e56c0-42e0-4a39-a747-0fe13b80e0cf" + "x-ms-correlation-request-id": "69dabf8b-a430-44fe-bf8a-83879ab44916", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "69dabf8b-a430-44fe-bf8a-83879ab44916", + "x-ms-routing-request-id": "WESTUS2:20210616T002151Z:69dabf8b-a430-44fe-bf8a-83879ab44916" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -233,9 +236,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -306,9 +311,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -474,6 +481,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -521,9 +536,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -594,9 +611,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -763,6 +782,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -810,9 +837,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -884,9 +913,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -958,9 +989,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1031,9 +1064,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1106,9 +1141,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1181,9 +1218,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1212,6 +1251,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1267,9 +1307,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1340,9 +1382,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1412,9 +1456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1475,9 +1521,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1547,9 +1595,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1612,9 +1662,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1677,9 +1729,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1750,9 +1804,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1815,7 +1871,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1858,9 +1915,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1912,9 +1971,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1965,9 +2026,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2017,9 +2080,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2064,6 +2129,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2107,9 +2173,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2153,9 +2221,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2199,9 +2269,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2385,9 +2457,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2433,9 +2507,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2481,9 +2557,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2529,9 +2607,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2577,9 +2657,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2625,9 +2707,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2785,6 +2869,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2832,9 +2924,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2897,9 +2991,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2961,9 +3057,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3010,9 +3108,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3057,7 +3157,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3197,6 +3298,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3244,7 +3353,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3289,7 +3399,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3334,7 +3445,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3378,7 +3490,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3422,7 +3535,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3466,7 +3580,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3510,7 +3625,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3554,7 +3670,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3598,9 +3715,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3664,9 +3783,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3716,9 +3837,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3861,6 +3984,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3908,9 +4039,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4053,6 +4186,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4070,15 +4211,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5025/providers/Microsoft.Compute/availabilitySets/test-aset1701?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5025/providers/Microsoft.Compute/availabilitySets/test-aset1701?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-606c26ea909acb4a8c21380a1196598c-d191fc5b6587d54c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-b498efd61ec9004c8d41c0332e7b8279-a7af2895b920894c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "337d720b678c3d3b659fe5b9a602fe7a", "x-ms-return-client-request-id": "true" }, @@ -4098,7 +4239,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4108,11 +4249,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "337d720b678c3d3b659fe5b9a602fe7a", - "x-ms-correlation-request-id": "63057ab4-98b9-45f6-9879-cf7aab812f73", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1195", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "05525dc5-a033-481e-bbf5-f56d9b7fbd5f", - "x-ms-routing-request-id": "WESTUS2:20210519T185957Z:63057ab4-98b9-45f6-9879-cf7aab812f73" + "x-ms-correlation-request-id": "a40f9bc6-cc4a-45bc-9ccc-97320c99e548", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1063", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9bd88527-539d-4dc9-9769-93c3d3a1ea90", + "x-ms-routing-request-id": "WESTUS2:20210616T002152Z:a40f9bc6-cc4a-45bc-9ccc-97320c99e548" }, "ResponseBody": [ "{\r\n", @@ -4139,8 +4280,8 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "traceparent": "00-a59dc1ad9ed65c41823ba8f231df6e08-e1105b2aa1619145-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e143ab43559f42448ad9aa6547b34f0d-50b4f26a53669241-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3328fcc31f5a1e90d15ef6623f0cf7e3", "x-ms-return-client-request-id": "true" }, @@ -4154,17 +4295,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "39448398-9de8-4adc-a08c-8503f19650c3", + "x-ms-correlation-request-id": "f93dcb73-9419-45ad-ab73-0373184f495e", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "39448398-9de8-4adc-a08c-8503f19650c3", - "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:39448398-9de8-4adc-a08c-8503f19650c3" + "x-ms-request-id": "f93dcb73-9419-45ad-ab73-0373184f495e", + "x-ms-routing-request-id": "WESTUS2:20210616T002152Z:f93dcb73-9419-45ad-ab73-0373184f495e" }, "ResponseBody": [] }, @@ -4173,7 +4314,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aaf69ccacad9001fcda00f01e40ae1ed", "x-ms-return-client-request-id": "true" }, @@ -4182,17 +4323,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:57 GMT", + "Date": "Wed, 16 Jun 2021 00:21:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8df04af5-9acf-4a3c-869d-ee044a1dc18f", - "x-ms-ratelimit-remaining-subscription-reads": "11626", - "x-ms-request-id": "8df04af5-9acf-4a3c-869d-ee044a1dc18f", - "x-ms-routing-request-id": "WESTUS2:20210519T185958Z:8df04af5-9acf-4a3c-869d-ee044a1dc18f" + "x-ms-correlation-request-id": "431e4531-690b-4b04-8712-d23aa6d6c940", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "431e4531-690b-4b04-8712-d23aa6d6c940", + "x-ms-routing-request-id": "WESTUS2:20210616T002152Z:431e4531-690b-4b04-8712-d23aa6d6c940" }, "ResponseBody": [] }, @@ -4201,7 +4342,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ce9ab317e7ba03246f72ffee52d4558", "x-ms-return-client-request-id": "true" }, @@ -4210,17 +4351,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:58 GMT", + "Date": "Wed, 16 Jun 2021 00:21:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4b092b36-96bc-4709-b982-267598169dfd", - "x-ms-ratelimit-remaining-subscription-reads": "11624", - "x-ms-request-id": "4b092b36-96bc-4709-b982-267598169dfd", - "x-ms-routing-request-id": "WESTUS2:20210519T185959Z:4b092b36-96bc-4709-b982-267598169dfd" + "x-ms-correlation-request-id": "857669d3-dc78-415d-9ada-9bb27d649179", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "857669d3-dc78-415d-9ada-9bb27d649179", + "x-ms-routing-request-id": "WESTUS2:20210616T002153Z:857669d3-dc78-415d-9ada-9bb27d649179" }, "ResponseBody": [] }, @@ -4229,7 +4370,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a398a5524d150e09a597887513b44bfa", "x-ms-return-client-request-id": "true" }, @@ -4238,17 +4379,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 18:59:59 GMT", + "Date": "Wed, 16 Jun 2021 00:21:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "04536972-eed5-4bc0-97d4-606b14b6af5e", - "x-ms-ratelimit-remaining-subscription-reads": "11622", - "x-ms-request-id": "04536972-eed5-4bc0-97d4-606b14b6af5e", - "x-ms-routing-request-id": "WESTUS2:20210519T190000Z:04536972-eed5-4bc0-97d4-606b14b6af5e" + "x-ms-correlation-request-id": "9ffa4365-5f2e-476b-9c57-dbbd292d5deb", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "9ffa4365-5f2e-476b-9c57-dbbd292d5deb", + "x-ms-routing-request-id": "WESTUS2:20210616T002155Z:9ffa4365-5f2e-476b-9c57-dbbd292d5deb" }, "ResponseBody": [] }, @@ -4257,7 +4398,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d314c7a9f8f4bd56a5664e19b211b9f", "x-ms-return-client-request-id": "true" }, @@ -4266,17 +4407,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:00 GMT", + "Date": "Wed, 16 Jun 2021 00:21:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e592c364-8015-46d8-88d6-83b8a04c37d5", - "x-ms-ratelimit-remaining-subscription-reads": "11620", - "x-ms-request-id": "e592c364-8015-46d8-88d6-83b8a04c37d5", - "x-ms-routing-request-id": "WESTUS2:20210519T190001Z:e592c364-8015-46d8-88d6-83b8a04c37d5" + "x-ms-correlation-request-id": "3041d85b-2430-41b2-ae97-65ce44ee1efc", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "3041d85b-2430-41b2-ae97-65ce44ee1efc", + "x-ms-routing-request-id": "WESTUS2:20210616T002156Z:3041d85b-2430-41b2-ae97-65ce44ee1efc" }, "ResponseBody": [] }, @@ -4285,7 +4426,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3fafb65b3e72e3d7a1dac7e4f6bc8c91", "x-ms-return-client-request-id": "true" }, @@ -4294,17 +4435,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:01 GMT", + "Date": "Wed, 16 Jun 2021 00:21:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c8d6e6db-0155-48a1-8d3a-66000b91f1d7", - "x-ms-ratelimit-remaining-subscription-reads": "11618", - "x-ms-request-id": "c8d6e6db-0155-48a1-8d3a-66000b91f1d7", - "x-ms-routing-request-id": "WESTUS2:20210519T190002Z:c8d6e6db-0155-48a1-8d3a-66000b91f1d7" + "x-ms-correlation-request-id": "d38b18ba-3366-4d31-ac69-9a8d707c2f3e", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "d38b18ba-3366-4d31-ac69-9a8d707c2f3e", + "x-ms-routing-request-id": "WESTUS2:20210616T002157Z:d38b18ba-3366-4d31-ac69-9a8d707c2f3e" }, "ResponseBody": [] }, @@ -4313,7 +4454,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "988334ac17fbb3c8d04c38bfe9287383", "x-ms-return-client-request-id": "true" }, @@ -4322,17 +4463,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:02 GMT", + "Date": "Wed, 16 Jun 2021 00:21:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "825ba982-9215-403f-84e9-8b2d461f0ddc", - "x-ms-ratelimit-remaining-subscription-reads": "11616", - "x-ms-request-id": "825ba982-9215-403f-84e9-8b2d461f0ddc", - "x-ms-routing-request-id": "WESTUS2:20210519T190003Z:825ba982-9215-403f-84e9-8b2d461f0ddc" + "x-ms-correlation-request-id": "108e550d-dc7d-43a8-b374-a8c20dd6e0ac", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "108e550d-dc7d-43a8-b374-a8c20dd6e0ac", + "x-ms-routing-request-id": "WESTUS2:20210616T002158Z:108e550d-dc7d-43a8-b374-a8c20dd6e0ac" }, "ResponseBody": [] }, @@ -4341,7 +4482,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c1ae97c0c053c88744d8cb5d8f155ae", "x-ms-return-client-request-id": "true" }, @@ -4350,17 +4491,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:03 GMT", + "Date": "Wed, 16 Jun 2021 00:21:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9d5467d7-6f22-4c2b-9ec5-8462e044d2b0", - "x-ms-ratelimit-remaining-subscription-reads": "11614", - "x-ms-request-id": "9d5467d7-6f22-4c2b-9ec5-8462e044d2b0", - "x-ms-routing-request-id": "WESTUS2:20210519T190004Z:9d5467d7-6f22-4c2b-9ec5-8462e044d2b0" + "x-ms-correlation-request-id": "c0608c68-4875-4ab4-840b-520d881cc7a9", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "c0608c68-4875-4ab4-840b-520d881cc7a9", + "x-ms-routing-request-id": "WESTUS2:20210616T002159Z:c0608c68-4875-4ab4-840b-520d881cc7a9" }, "ResponseBody": [] }, @@ -4369,7 +4510,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6635d2c9829d44a3eefc6f250518fa78", "x-ms-return-client-request-id": "true" }, @@ -4378,17 +4519,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:04 GMT", + "Date": "Wed, 16 Jun 2021 00:21:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f8915cbf-c5ad-4515-948a-f962d22b29d5", - "x-ms-ratelimit-remaining-subscription-reads": "11612", - "x-ms-request-id": "f8915cbf-c5ad-4515-948a-f962d22b29d5", - "x-ms-routing-request-id": "WESTUS2:20210519T190005Z:f8915cbf-c5ad-4515-948a-f962d22b29d5" + "x-ms-correlation-request-id": "dfa826b4-d700-492d-bc05-4a208105b405", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "dfa826b4-d700-492d-bc05-4a208105b405", + "x-ms-routing-request-id": "WESTUS2:20210616T002200Z:dfa826b4-d700-492d-bc05-4a208105b405" }, "ResponseBody": [] }, @@ -4397,7 +4538,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0c6743672fa19f8cab4723ad8a13dadf", "x-ms-return-client-request-id": "true" }, @@ -4406,17 +4547,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:05 GMT", + "Date": "Wed, 16 Jun 2021 00:22:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e976ad95-340a-427b-868a-d9d28d6329f3", - "x-ms-ratelimit-remaining-subscription-reads": "11610", - "x-ms-request-id": "e976ad95-340a-427b-868a-d9d28d6329f3", - "x-ms-routing-request-id": "WESTUS2:20210519T190006Z:e976ad95-340a-427b-868a-d9d28d6329f3" + "x-ms-correlation-request-id": "bda43e72-0995-430f-bcc7-e1ab2981d356", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "bda43e72-0995-430f-bcc7-e1ab2981d356", + "x-ms-routing-request-id": "WESTUS2:20210616T002201Z:bda43e72-0995-430f-bcc7-e1ab2981d356" }, "ResponseBody": [] }, @@ -4425,7 +4566,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "16f58af60cf2f9e545d56e089d62365c", "x-ms-return-client-request-id": "true" }, @@ -4434,17 +4575,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:06 GMT", + "Date": "Wed, 16 Jun 2021 00:22:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "21237ea6-e936-49ac-a789-51c4420cf10b", - "x-ms-ratelimit-remaining-subscription-reads": "11608", - "x-ms-request-id": "21237ea6-e936-49ac-a789-51c4420cf10b", - "x-ms-routing-request-id": "WESTUS2:20210519T190007Z:21237ea6-e936-49ac-a789-51c4420cf10b" + "x-ms-correlation-request-id": "ae0066e5-f6fe-4e75-8745-17b8c7c3d9d1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ae0066e5-f6fe-4e75-8745-17b8c7c3d9d1", + "x-ms-routing-request-id": "WESTUS2:20210616T002205Z:ae0066e5-f6fe-4e75-8745-17b8c7c3d9d1" }, "ResponseBody": [] }, @@ -4453,7 +4594,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "944d13534989990c4695ba565ef5b9db", "x-ms-return-client-request-id": "true" }, @@ -4462,17 +4603,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:07 GMT", + "Date": "Wed, 16 Jun 2021 00:22:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "891e5f49-2886-415c-82f6-9a4c8a3691c3", - "x-ms-ratelimit-remaining-subscription-reads": "11606", - "x-ms-request-id": "891e5f49-2886-415c-82f6-9a4c8a3691c3", - "x-ms-routing-request-id": "WESTUS2:20210519T190008Z:891e5f49-2886-415c-82f6-9a4c8a3691c3" + "x-ms-correlation-request-id": "cc07b1e7-2c78-4864-a1a5-47b0a41d185b", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "cc07b1e7-2c78-4864-a1a5-47b0a41d185b", + "x-ms-routing-request-id": "WESTUS2:20210616T002206Z:cc07b1e7-2c78-4864-a1a5-47b0a41d185b" }, "ResponseBody": [] }, @@ -4481,7 +4622,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7b2f9021e4225a855e6ec6ccc1830249", "x-ms-return-client-request-id": "true" }, @@ -4490,17 +4631,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:08 GMT", + "Date": "Wed, 16 Jun 2021 00:22:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "543c394a-e7dd-4d93-abb7-e95934dfd104", - "x-ms-ratelimit-remaining-subscription-reads": "11604", - "x-ms-request-id": "543c394a-e7dd-4d93-abb7-e95934dfd104", - "x-ms-routing-request-id": "WESTUS2:20210519T190009Z:543c394a-e7dd-4d93-abb7-e95934dfd104" + "x-ms-correlation-request-id": "ce3f44be-20e2-4a9e-af6f-1b183884b18e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "ce3f44be-20e2-4a9e-af6f-1b183884b18e", + "x-ms-routing-request-id": "WESTUS2:20210616T002207Z:ce3f44be-20e2-4a9e-af6f-1b183884b18e" }, "ResponseBody": [] }, @@ -4509,7 +4650,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "765ac71046c5ad557e5bcf5d528e9a4f", "x-ms-return-client-request-id": "true" }, @@ -4518,17 +4659,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:09 GMT", + "Date": "Wed, 16 Jun 2021 00:22:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b0af703e-282c-47ab-a3ac-e88f6d904f06", - "x-ms-ratelimit-remaining-subscription-reads": "11602", - "x-ms-request-id": "b0af703e-282c-47ab-a3ac-e88f6d904f06", - "x-ms-routing-request-id": "WESTUS2:20210519T190010Z:b0af703e-282c-47ab-a3ac-e88f6d904f06" + "x-ms-correlation-request-id": "540917f3-533f-4041-a29e-4df68fec0332", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "540917f3-533f-4041-a29e-4df68fec0332", + "x-ms-routing-request-id": "WESTUS2:20210616T002208Z:540917f3-533f-4041-a29e-4df68fec0332" }, "ResponseBody": [] }, @@ -4537,7 +4678,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0de7921bbb336e3a8ef3361b8240d8c3", "x-ms-return-client-request-id": "true" }, @@ -4546,17 +4687,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:10 GMT", + "Date": "Wed, 16 Jun 2021 00:22:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "15f75a5d-8754-4fdb-98c3-fd9a67e266b3", - "x-ms-ratelimit-remaining-subscription-reads": "11600", - "x-ms-request-id": "15f75a5d-8754-4fdb-98c3-fd9a67e266b3", - "x-ms-routing-request-id": "WESTUS2:20210519T190011Z:15f75a5d-8754-4fdb-98c3-fd9a67e266b3" + "x-ms-correlation-request-id": "a3c61012-8178-4fe9-829d-9ea738a0f4d4", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "a3c61012-8178-4fe9-829d-9ea738a0f4d4", + "x-ms-routing-request-id": "WESTUS2:20210616T002209Z:a3c61012-8178-4fe9-829d-9ea738a0f4d4" }, "ResponseBody": [] }, @@ -4565,7 +4706,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97467193439bda153a81fdc6152807cf", "x-ms-return-client-request-id": "true" }, @@ -4574,17 +4715,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:11 GMT", + "Date": "Wed, 16 Jun 2021 00:22:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "aeba851d-e75b-4d5e-8d96-ea63bc542b32", - "x-ms-ratelimit-remaining-subscription-reads": "11598", - "x-ms-request-id": "aeba851d-e75b-4d5e-8d96-ea63bc542b32", - "x-ms-routing-request-id": "WESTUS2:20210519T190012Z:aeba851d-e75b-4d5e-8d96-ea63bc542b32" + "x-ms-correlation-request-id": "c7107207-fe1c-4443-b0c1-9e0a0ab22fd4", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "c7107207-fe1c-4443-b0c1-9e0a0ab22fd4", + "x-ms-routing-request-id": "WESTUS2:20210616T002210Z:c7107207-fe1c-4443-b0c1-9e0a0ab22fd4" }, "ResponseBody": [] }, @@ -4593,7 +4734,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2fb077d3f59b54158cece8d1103a2b3d", "x-ms-return-client-request-id": "true" }, @@ -4602,17 +4743,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:12 GMT", + "Date": "Wed, 16 Jun 2021 00:22:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "03a664d9-94cb-4187-9553-b28a7695ae5a", - "x-ms-ratelimit-remaining-subscription-reads": "11596", - "x-ms-request-id": "03a664d9-94cb-4187-9553-b28a7695ae5a", - "x-ms-routing-request-id": "WESTUS2:20210519T190013Z:03a664d9-94cb-4187-9553-b28a7695ae5a" + "x-ms-correlation-request-id": "1cee5349-0ccb-4490-a245-d061e1cd00a9", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "1cee5349-0ccb-4490-a245-d061e1cd00a9", + "x-ms-routing-request-id": "WESTUS2:20210616T002211Z:1cee5349-0ccb-4490-a245-d061e1cd00a9" }, "ResponseBody": [] }, @@ -4621,7 +4762,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e1c90b830248d8b47c0cd2b1be745865", "x-ms-return-client-request-id": "true" }, @@ -4630,17 +4771,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:13 GMT", + "Date": "Wed, 16 Jun 2021 00:22:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "92c2a6bf-4efc-42b5-8f03-286905733124", - "x-ms-ratelimit-remaining-subscription-reads": "11594", - "x-ms-request-id": "92c2a6bf-4efc-42b5-8f03-286905733124", - "x-ms-routing-request-id": "WESTUS2:20210519T190014Z:92c2a6bf-4efc-42b5-8f03-286905733124" + "x-ms-correlation-request-id": "0de0d075-851b-4a01-bd7f-4f0f58364ecd", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "0de0d075-851b-4a01-bd7f-4f0f58364ecd", + "x-ms-routing-request-id": "WESTUS2:20210616T002212Z:0de0d075-851b-4a01-bd7f-4f0f58364ecd" }, "ResponseBody": [] }, @@ -4649,7 +4790,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a4766eba9909e285bf10bae5a44ca00", "x-ms-return-client-request-id": "true" }, @@ -4658,17 +4799,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:14 GMT", + "Date": "Wed, 16 Jun 2021 00:22:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "24e7f7b7-da2e-48a1-8d91-4254c1869206", - "x-ms-ratelimit-remaining-subscription-reads": "11592", - "x-ms-request-id": "24e7f7b7-da2e-48a1-8d91-4254c1869206", - "x-ms-routing-request-id": "WESTUS2:20210519T190015Z:24e7f7b7-da2e-48a1-8d91-4254c1869206" + "x-ms-correlation-request-id": "c555ad4d-43b1-443e-b8cf-75c3f54d225e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "c555ad4d-43b1-443e-b8cf-75c3f54d225e", + "x-ms-routing-request-id": "WESTUS2:20210616T002213Z:c555ad4d-43b1-443e-b8cf-75c3f54d225e" }, "ResponseBody": [] }, @@ -4677,7 +4818,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0942bf56265ed086c2d7b28e22649618", "x-ms-return-client-request-id": "true" }, @@ -4686,17 +4827,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:15 GMT", + "Date": "Wed, 16 Jun 2021 00:22:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3c77dcc9-bb27-4e74-8059-5f5260443552", - "x-ms-ratelimit-remaining-subscription-reads": "11590", - "x-ms-request-id": "3c77dcc9-bb27-4e74-8059-5f5260443552", - "x-ms-routing-request-id": "WESTUS2:20210519T190016Z:3c77dcc9-bb27-4e74-8059-5f5260443552" + "x-ms-correlation-request-id": "6b770ae5-574a-455a-b544-9951f1ac32c2", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "6b770ae5-574a-455a-b544-9951f1ac32c2", + "x-ms-routing-request-id": "WESTUS2:20210616T002214Z:6b770ae5-574a-455a-b544-9951f1ac32c2" }, "ResponseBody": [] }, @@ -4705,7 +4846,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a9e6829320f2daade32b8556f7057d38", "x-ms-return-client-request-id": "true" }, @@ -4714,17 +4855,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:17 GMT", + "Date": "Wed, 16 Jun 2021 00:22:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a2673307-ca8e-4d60-8ff5-785862290f62", - "x-ms-ratelimit-remaining-subscription-reads": "11588", - "x-ms-request-id": "a2673307-ca8e-4d60-8ff5-785862290f62", - "x-ms-routing-request-id": "WESTUS2:20210519T190017Z:a2673307-ca8e-4d60-8ff5-785862290f62" + "x-ms-correlation-request-id": "68aa9a86-81bd-4771-8798-e0701a62192b", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "68aa9a86-81bd-4771-8798-e0701a62192b", + "x-ms-routing-request-id": "WESTUS2:20210616T002215Z:68aa9a86-81bd-4771-8798-e0701a62192b" }, "ResponseBody": [] }, @@ -4733,7 +4874,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff5ad2424f31c406e07748b8f6997bf7", "x-ms-return-client-request-id": "true" }, @@ -4742,17 +4883,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:18 GMT", + "Date": "Wed, 16 Jun 2021 00:22:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4e2aeafe-9fdb-4e96-9099-2e4b7174e999", - "x-ms-ratelimit-remaining-subscription-reads": "11586", - "x-ms-request-id": "4e2aeafe-9fdb-4e96-9099-2e4b7174e999", - "x-ms-routing-request-id": "WESTUS2:20210519T190018Z:4e2aeafe-9fdb-4e96-9099-2e4b7174e999" + "x-ms-correlation-request-id": "48118eaa-30bf-4706-b695-a622bc56e3a2", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "48118eaa-30bf-4706-b695-a622bc56e3a2", + "x-ms-routing-request-id": "WESTUS2:20210616T002216Z:48118eaa-30bf-4706-b695-a622bc56e3a2" }, "ResponseBody": [] }, @@ -4761,7 +4902,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d81bf25b205d360d11682632a12fd8bc", "x-ms-return-client-request-id": "true" }, @@ -4770,17 +4911,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:19 GMT", + "Date": "Wed, 16 Jun 2021 00:22:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "05064794-8a66-4eaf-8734-ab4a3a93b4f1", - "x-ms-ratelimit-remaining-subscription-reads": "11584", - "x-ms-request-id": "05064794-8a66-4eaf-8734-ab4a3a93b4f1", - "x-ms-routing-request-id": "WESTUS2:20210519T190019Z:05064794-8a66-4eaf-8734-ab4a3a93b4f1" + "x-ms-correlation-request-id": "6d9088bc-427b-4dff-95c7-2d81c129b4cb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "6d9088bc-427b-4dff-95c7-2d81c129b4cb", + "x-ms-routing-request-id": "WESTUS2:20210616T002217Z:6d9088bc-427b-4dff-95c7-2d81c129b4cb" }, "ResponseBody": [] }, @@ -4789,7 +4930,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "504b795a960944e67c21c97bd7f5e34a", "x-ms-return-client-request-id": "true" }, @@ -4798,17 +4939,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:20 GMT", + "Date": "Wed, 16 Jun 2021 00:22:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ff70e89f-ba06-4bda-8cdf-6c36b83a8734", - "x-ms-ratelimit-remaining-subscription-reads": "11582", - "x-ms-request-id": "ff70e89f-ba06-4bda-8cdf-6c36b83a8734", - "x-ms-routing-request-id": "WESTUS2:20210519T190020Z:ff70e89f-ba06-4bda-8cdf-6c36b83a8734" + "x-ms-correlation-request-id": "a68ce2a1-5817-4a46-ab09-c75937eb8c87", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "a68ce2a1-5817-4a46-ab09-c75937eb8c87", + "x-ms-routing-request-id": "WESTUS2:20210616T002218Z:a68ce2a1-5817-4a46-ab09-c75937eb8c87" }, "ResponseBody": [] }, @@ -4817,7 +4958,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "05fb8db0a5ea21dac424eec929d423b0", "x-ms-return-client-request-id": "true" }, @@ -4826,17 +4967,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:21 GMT", + "Date": "Wed, 16 Jun 2021 00:22:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6", - "x-ms-ratelimit-remaining-subscription-reads": "11580", - "x-ms-request-id": "2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6", - "x-ms-routing-request-id": "WESTUS2:20210519T190022Z:2fa8c2ef-e7fb-49f2-92e9-d6bc6c2ddef6" + "x-ms-correlation-request-id": "796667ac-a6ae-4b0d-8695-1d3e4642bfd8", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "796667ac-a6ae-4b0d-8695-1d3e4642bfd8", + "x-ms-routing-request-id": "WESTUS2:20210616T002219Z:796667ac-a6ae-4b0d-8695-1d3e4642bfd8" }, "ResponseBody": [] }, @@ -4845,7 +4986,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d5e8b9e2a4dc4ee0bd75c3c57915e1b", "x-ms-return-client-request-id": "true" }, @@ -4854,17 +4995,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:22 GMT", + "Date": "Wed, 16 Jun 2021 00:22:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "34604dd5-962e-4a23-a14c-5e9df5fd8cbe", - "x-ms-ratelimit-remaining-subscription-reads": "11578", - "x-ms-request-id": "34604dd5-962e-4a23-a14c-5e9df5fd8cbe", - "x-ms-routing-request-id": "WESTUS2:20210519T190023Z:34604dd5-962e-4a23-a14c-5e9df5fd8cbe" + "x-ms-correlation-request-id": "e49988c9-6032-488a-99ec-4197e0876970", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e49988c9-6032-488a-99ec-4197e0876970", + "x-ms-routing-request-id": "WESTUS2:20210616T002220Z:e49988c9-6032-488a-99ec-4197e0876970" }, "ResponseBody": [] }, @@ -4873,7 +5014,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1381db84d334b4d29e2a8be5a81d1ba7", "x-ms-return-client-request-id": "true" }, @@ -4882,17 +5023,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:23 GMT", + "Date": "Wed, 16 Jun 2021 00:22:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "db057975-4ab7-4379-a148-78fde094a24c", - "x-ms-ratelimit-remaining-subscription-reads": "11576", - "x-ms-request-id": "db057975-4ab7-4379-a148-78fde094a24c", - "x-ms-routing-request-id": "WESTUS2:20210519T190024Z:db057975-4ab7-4379-a148-78fde094a24c" + "x-ms-correlation-request-id": "84c7c649-b81b-467f-adc8-0ae6b37dc1ca", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "84c7c649-b81b-467f-adc8-0ae6b37dc1ca", + "x-ms-routing-request-id": "WESTUS2:20210616T002221Z:84c7c649-b81b-467f-adc8-0ae6b37dc1ca" }, "ResponseBody": [] }, @@ -4901,7 +5042,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4cdd18fd669785fc9f36f913499eca33", "x-ms-return-client-request-id": "true" }, @@ -4910,17 +5051,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:24 GMT", + "Date": "Wed, 16 Jun 2021 00:22:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a178250e-1234-44f2-b5c4-ae0f75a47fee", - "x-ms-ratelimit-remaining-subscription-reads": "11574", - "x-ms-request-id": "a178250e-1234-44f2-b5c4-ae0f75a47fee", - "x-ms-routing-request-id": "WESTUS2:20210519T190025Z:a178250e-1234-44f2-b5c4-ae0f75a47fee" + "x-ms-correlation-request-id": "91c39af3-675d-426b-a2c7-a06f4406f3f9", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "91c39af3-675d-426b-a2c7-a06f4406f3f9", + "x-ms-routing-request-id": "WESTUS2:20210616T002222Z:91c39af3-675d-426b-a2c7-a06f4406f3f9" }, "ResponseBody": [] }, @@ -4929,7 +5070,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4d45d2c50f52cb7cb9a9de239f081bee", "x-ms-return-client-request-id": "true" }, @@ -4938,17 +5079,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:25 GMT", + "Date": "Wed, 16 Jun 2021 00:22:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "de6b0aa8-665a-49d7-af38-7d581b074714", - "x-ms-ratelimit-remaining-subscription-reads": "11572", - "x-ms-request-id": "de6b0aa8-665a-49d7-af38-7d581b074714", - "x-ms-routing-request-id": "WESTUS2:20210519T190026Z:de6b0aa8-665a-49d7-af38-7d581b074714" + "x-ms-correlation-request-id": "1b320ac1-fbef-447f-a435-15692dd251fb", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "1b320ac1-fbef-447f-a435-15692dd251fb", + "x-ms-routing-request-id": "WESTUS2:20210616T002223Z:1b320ac1-fbef-447f-a435-15692dd251fb" }, "ResponseBody": [] }, @@ -4957,7 +5098,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3e3eb4bc12b41d84dffc73fdd9bf6b00", "x-ms-return-client-request-id": "true" }, @@ -4966,17 +5107,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:27 GMT", + "Date": "Wed, 16 Jun 2021 00:22:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "761cd75c-ae42-4a81-b199-dc422408a141", - "x-ms-ratelimit-remaining-subscription-reads": "11570", - "x-ms-request-id": "761cd75c-ae42-4a81-b199-dc422408a141", - "x-ms-routing-request-id": "WESTUS2:20210519T190027Z:761cd75c-ae42-4a81-b199-dc422408a141" + "x-ms-correlation-request-id": "914505b0-5e05-4803-90e2-74a7dfd39e76", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "914505b0-5e05-4803-90e2-74a7dfd39e76", + "x-ms-routing-request-id": "WESTUS2:20210616T002224Z:914505b0-5e05-4803-90e2-74a7dfd39e76" }, "ResponseBody": [] }, @@ -4985,7 +5126,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d520585fcdd7ee559c1193ed88d9e697", "x-ms-return-client-request-id": "true" }, @@ -4994,17 +5135,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:28 GMT", + "Date": "Wed, 16 Jun 2021 00:22:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9e4dde71-a1a2-4022-9709-30c897c65193", - "x-ms-ratelimit-remaining-subscription-reads": "11568", - "x-ms-request-id": "9e4dde71-a1a2-4022-9709-30c897c65193", - "x-ms-routing-request-id": "WESTUS2:20210519T190028Z:9e4dde71-a1a2-4022-9709-30c897c65193" + "x-ms-correlation-request-id": "10c59d64-5e35-48eb-8e3c-837d096d02a7", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "10c59d64-5e35-48eb-8e3c-837d096d02a7", + "x-ms-routing-request-id": "WESTUS2:20210616T002226Z:10c59d64-5e35-48eb-8e3c-837d096d02a7" }, "ResponseBody": [] }, @@ -5013,7 +5154,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "95560b1a8b5fb27e4e276e569b7ef1f9", "x-ms-return-client-request-id": "true" }, @@ -5022,17 +5163,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:29 GMT", + "Date": "Wed, 16 Jun 2021 00:22:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8683e497-85dd-4e9c-bea7-dcf4df34cad5", - "x-ms-ratelimit-remaining-subscription-reads": "11566", - "x-ms-request-id": "8683e497-85dd-4e9c-bea7-dcf4df34cad5", - "x-ms-routing-request-id": "WESTUS2:20210519T190029Z:8683e497-85dd-4e9c-bea7-dcf4df34cad5" + "x-ms-correlation-request-id": "b820112e-7361-4c9d-bcb6-9881a63a0c60", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "b820112e-7361-4c9d-bcb6-9881a63a0c60", + "x-ms-routing-request-id": "WESTUS2:20210616T002227Z:b820112e-7361-4c9d-bcb6-9881a63a0c60" }, "ResponseBody": [] }, @@ -5041,7 +5182,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46c3dd3e46e8ee165e50a2a27f979505", "x-ms-return-client-request-id": "true" }, @@ -5050,17 +5191,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:30 GMT", + "Date": "Wed, 16 Jun 2021 00:22:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b676803b-a2ce-444d-b077-3c38dede2c77", - "x-ms-ratelimit-remaining-subscription-reads": "11564", - "x-ms-request-id": "b676803b-a2ce-444d-b077-3c38dede2c77", - "x-ms-routing-request-id": "WESTUS2:20210519T190030Z:b676803b-a2ce-444d-b077-3c38dede2c77" + "x-ms-correlation-request-id": "650b1ed1-f64c-41c8-8d87-0c86881688ac", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "650b1ed1-f64c-41c8-8d87-0c86881688ac", + "x-ms-routing-request-id": "WESTUS2:20210616T002228Z:650b1ed1-f64c-41c8-8d87-0c86881688ac" }, "ResponseBody": [] }, @@ -5069,7 +5210,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cee2dc15d568d4a1da6d87b05fff521d", "x-ms-return-client-request-id": "true" }, @@ -5078,17 +5219,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:31 GMT", + "Date": "Wed, 16 Jun 2021 00:22:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5f7b77a6-81f4-4e4a-b25a-01a212d690ce", - "x-ms-ratelimit-remaining-subscription-reads": "11562", - "x-ms-request-id": "5f7b77a6-81f4-4e4a-b25a-01a212d690ce", - "x-ms-routing-request-id": "WESTUS2:20210519T190031Z:5f7b77a6-81f4-4e4a-b25a-01a212d690ce" + "x-ms-correlation-request-id": "f453f2d1-4b62-4201-8197-ad4bc62ba2dd", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "f453f2d1-4b62-4201-8197-ad4bc62ba2dd", + "x-ms-routing-request-id": "WESTUS2:20210616T002229Z:f453f2d1-4b62-4201-8197-ad4bc62ba2dd" }, "ResponseBody": [] }, @@ -5097,7 +5238,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abae99209f15d4aff468360ee8db33b6", "x-ms-return-client-request-id": "true" }, @@ -5106,17 +5247,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:32 GMT", + "Date": "Wed, 16 Jun 2021 00:22:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19", - "x-ms-ratelimit-remaining-subscription-reads": "11560", - "x-ms-request-id": "d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19", - "x-ms-routing-request-id": "WESTUS2:20210519T190032Z:d9d8b72b-a195-4d76-ad7e-e8a1bcf67d19" + "x-ms-correlation-request-id": "b24d4104-0047-4e24-a0c8-7b009d3e77b6", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "b24d4104-0047-4e24-a0c8-7b009d3e77b6", + "x-ms-routing-request-id": "WESTUS2:20210616T002230Z:b24d4104-0047-4e24-a0c8-7b009d3e77b6" }, "ResponseBody": [] }, @@ -5125,7 +5266,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf406892239c68913bee6c7abe668e5f", "x-ms-return-client-request-id": "true" }, @@ -5134,17 +5275,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:33 GMT", + "Date": "Wed, 16 Jun 2021 00:22:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9dbeabc2-df93-41d0-8c42-5efc217cc79c", - "x-ms-ratelimit-remaining-subscription-reads": "11558", - "x-ms-request-id": "9dbeabc2-df93-41d0-8c42-5efc217cc79c", - "x-ms-routing-request-id": "WESTUS2:20210519T190033Z:9dbeabc2-df93-41d0-8c42-5efc217cc79c" + "x-ms-correlation-request-id": "ccc61f11-3922-4927-baef-75bbea7be19c", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ccc61f11-3922-4927-baef-75bbea7be19c", + "x-ms-routing-request-id": "WESTUS2:20210616T002231Z:ccc61f11-3922-4927-baef-75bbea7be19c" }, "ResponseBody": [] }, @@ -5153,7 +5294,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e58285feeae875ef2d0dd9ff9f92ebfe", "x-ms-return-client-request-id": "true" }, @@ -5162,17 +5303,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:34 GMT", + "Date": "Wed, 16 Jun 2021 00:22:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "96ec89ab-b614-4e66-b964-ce60a25c8d46", - "x-ms-ratelimit-remaining-subscription-reads": "11556", - "x-ms-request-id": "96ec89ab-b614-4e66-b964-ce60a25c8d46", - "x-ms-routing-request-id": "WESTUS2:20210519T190034Z:96ec89ab-b614-4e66-b964-ce60a25c8d46" + "x-ms-correlation-request-id": "481f1bf1-d072-4319-834f-bb4f540a182a", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "481f1bf1-d072-4319-834f-bb4f540a182a", + "x-ms-routing-request-id": "WESTUS2:20210616T002232Z:481f1bf1-d072-4319-834f-bb4f540a182a" }, "ResponseBody": [] }, @@ -5181,7 +5322,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f71dd03a92befd8008456f263334168e", "x-ms-return-client-request-id": "true" }, @@ -5190,17 +5331,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:35 GMT", + "Date": "Wed, 16 Jun 2021 00:22:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3f854722-055e-4b50-86f5-a536197f709a", - "x-ms-ratelimit-remaining-subscription-reads": "11554", - "x-ms-request-id": "3f854722-055e-4b50-86f5-a536197f709a", - "x-ms-routing-request-id": "WESTUS2:20210519T190035Z:3f854722-055e-4b50-86f5-a536197f709a" + "x-ms-correlation-request-id": "9fe4c774-bd0f-46c4-ae58-59a92057eac1", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "9fe4c774-bd0f-46c4-ae58-59a92057eac1", + "x-ms-routing-request-id": "WESTUS2:20210616T002233Z:9fe4c774-bd0f-46c4-ae58-59a92057eac1" }, "ResponseBody": [] }, @@ -5209,7 +5350,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6310d6d94d59a8cd78cb928f4991c9a8", "x-ms-return-client-request-id": "true" }, @@ -5217,19 +5358,18 @@ "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Connection": "close", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:36 GMT", + "Date": "Wed, 16 Jun 2021 00:22:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "61154a06-5b73-466c-b70d-b86f922d4b88", - "x-ms-ratelimit-remaining-subscription-reads": "11552", - "x-ms-request-id": "61154a06-5b73-466c-b70d-b86f922d4b88", - "x-ms-routing-request-id": "WESTUS2:20210519T190036Z:61154a06-5b73-466c-b70d-b86f922d4b88" + "x-ms-correlation-request-id": "a878c0c2-1a37-4ae9-b033-a4299d1d87ce", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "a878c0c2-1a37-4ae9-b033-a4299d1d87ce", + "x-ms-routing-request-id": "WESTUS2:20210616T002234Z:a878c0c2-1a37-4ae9-b033-a4299d1d87ce" }, "ResponseBody": [] }, @@ -5238,7 +5378,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed3f6d0397486ba10485dda37ac941f8", "x-ms-return-client-request-id": "true" }, @@ -5247,17 +5387,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:36 GMT", + "Date": "Wed, 16 Jun 2021 00:22:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f387ef07-8df1-475d-9d8a-6c97dcc2c8dd", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f387ef07-8df1-475d-9d8a-6c97dcc2c8dd", - "x-ms-routing-request-id": "WESTUS2:20210519T190037Z:f387ef07-8df1-475d-9d8a-6c97dcc2c8dd" + "x-ms-correlation-request-id": "d1511a21-8b59-4ce3-8e43-67c86e974d76", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "d1511a21-8b59-4ce3-8e43-67c86e974d76", + "x-ms-routing-request-id": "WESTUS2:20210616T002235Z:d1511a21-8b59-4ce3-8e43-67c86e974d76" }, "ResponseBody": [] }, @@ -5266,7 +5406,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9264bf78882eda502757ff200f1b376", "x-ms-return-client-request-id": "true" }, @@ -5275,17 +5415,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:37 GMT", + "Date": "Wed, 16 Jun 2021 00:22:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7700bab9-ce2e-4221-8d3d-913192f74bd2", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "7700bab9-ce2e-4221-8d3d-913192f74bd2", - "x-ms-routing-request-id": "WESTUS2:20210519T190038Z:7700bab9-ce2e-4221-8d3d-913192f74bd2" + "x-ms-correlation-request-id": "a755901f-8126-4df8-bc03-c7958a16b336", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "a755901f-8126-4df8-bc03-c7958a16b336", + "x-ms-routing-request-id": "WESTUS2:20210616T002236Z:a755901f-8126-4df8-bc03-c7958a16b336" }, "ResponseBody": [] }, @@ -5294,7 +5434,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c523c67b28f5424534a45fd36f2a2daf", "x-ms-return-client-request-id": "true" }, @@ -5303,17 +5443,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:38 GMT", + "Date": "Wed, 16 Jun 2021 00:22:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1d258593-4d02-4d96-91b2-521a4cd26119", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "1d258593-4d02-4d96-91b2-521a4cd26119", - "x-ms-routing-request-id": "WESTUS2:20210519T190039Z:1d258593-4d02-4d96-91b2-521a4cd26119" + "x-ms-correlation-request-id": "a41ac96b-a682-4c58-97bb-ac4f98579b45", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "a41ac96b-a682-4c58-97bb-ac4f98579b45", + "x-ms-routing-request-id": "WESTUS2:20210616T002237Z:a41ac96b-a682-4c58-97bb-ac4f98579b45" }, "ResponseBody": [] }, @@ -5322,7 +5462,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fd989989006b7b25c851ead318ae6b12", "x-ms-return-client-request-id": "true" }, @@ -5331,17 +5471,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:39 GMT", + "Date": "Wed, 16 Jun 2021 00:22:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "716c125b-f91b-48d7-98b9-650988ab546e", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "716c125b-f91b-48d7-98b9-650988ab546e", - "x-ms-routing-request-id": "WESTUS2:20210519T190040Z:716c125b-f91b-48d7-98b9-650988ab546e" + "x-ms-correlation-request-id": "50148620-9d07-49c7-868a-8943e5636d26", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "50148620-9d07-49c7-868a-8943e5636d26", + "x-ms-routing-request-id": "WESTUS2:20210616T002238Z:50148620-9d07-49c7-868a-8943e5636d26" }, "ResponseBody": [] }, @@ -5350,7 +5490,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b42766d17ca5ce0206e394de28d17ed8", "x-ms-return-client-request-id": "true" }, @@ -5359,17 +5499,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:40 GMT", + "Date": "Wed, 16 Jun 2021 00:22:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a1e153dd-1fd6-46cf-ad25-8dcb20d815dd", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "a1e153dd-1fd6-46cf-ad25-8dcb20d815dd", - "x-ms-routing-request-id": "WESTUS2:20210519T190041Z:a1e153dd-1fd6-46cf-ad25-8dcb20d815dd" + "x-ms-correlation-request-id": "706b2dc0-e755-4a90-ae03-359baaf72f68", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "706b2dc0-e755-4a90-ae03-359baaf72f68", + "x-ms-routing-request-id": "WESTUS2:20210616T002239Z:706b2dc0-e755-4a90-ae03-359baaf72f68" }, "ResponseBody": [] }, @@ -5378,7 +5518,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6669cf47b6597b0ba0a8fca43e722a85", "x-ms-return-client-request-id": "true" }, @@ -5387,17 +5527,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:41 GMT", + "Date": "Wed, 16 Jun 2021 00:22:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5", - "x-ms-routing-request-id": "WESTUS2:20210519T190042Z:65c38cc9-12d1-4a18-8ec3-31dbdfbab5f5" + "x-ms-correlation-request-id": "0406ccf9-e155-47a6-b3ea-d04bd9f20ed8", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "0406ccf9-e155-47a6-b3ea-d04bd9f20ed8", + "x-ms-routing-request-id": "WESTUS2:20210616T002240Z:0406ccf9-e155-47a6-b3ea-d04bd9f20ed8" }, "ResponseBody": [] }, @@ -5406,7 +5546,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09024d3879020d0996c9f7876b4752f7", "x-ms-return-client-request-id": "true" }, @@ -5415,17 +5555,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:42 GMT", + "Date": "Wed, 16 Jun 2021 00:22:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "adae3a6b-63f9-47b6-8ec4-2bee7ef8d768", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "adae3a6b-63f9-47b6-8ec4-2bee7ef8d768", - "x-ms-routing-request-id": "WESTUS2:20210519T190043Z:adae3a6b-63f9-47b6-8ec4-2bee7ef8d768" + "x-ms-correlation-request-id": "5b6b6b30-139d-485f-abaa-34be43719b68", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "5b6b6b30-139d-485f-abaa-34be43719b68", + "x-ms-routing-request-id": "WESTUS2:20210616T002241Z:5b6b6b30-139d-485f-abaa-34be43719b68" }, "ResponseBody": [] }, @@ -5434,7 +5574,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "488b12d304451ab85bab13fc7f5e8f93", "x-ms-return-client-request-id": "true" }, @@ -5443,17 +5583,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:44 GMT", + "Date": "Wed, 16 Jun 2021 00:22:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "86789199-3245-41ea-82a8-22fe7333c920", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "86789199-3245-41ea-82a8-22fe7333c920", - "x-ms-routing-request-id": "WESTUS2:20210519T190044Z:86789199-3245-41ea-82a8-22fe7333c920" + "x-ms-correlation-request-id": "1db419f0-379e-4798-ae1f-f9741988db88", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "1db419f0-379e-4798-ae1f-f9741988db88", + "x-ms-routing-request-id": "WESTUS2:20210616T002242Z:1db419f0-379e-4798-ae1f-f9741988db88" }, "ResponseBody": [] }, @@ -5462,7 +5602,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "daa50eb874cecdd5c65cd08fbf830f59", "x-ms-return-client-request-id": "true" }, @@ -5471,17 +5611,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:45 GMT", + "Date": "Wed, 16 Jun 2021 00:22:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cc552e35-3eab-473f-b8f9-5729427a798e", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "cc552e35-3eab-473f-b8f9-5729427a798e", - "x-ms-routing-request-id": "WESTUS2:20210519T190045Z:cc552e35-3eab-473f-b8f9-5729427a798e" + "x-ms-correlation-request-id": "329832c3-642f-466a-ac09-1fcfb1d548ee", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "329832c3-642f-466a-ac09-1fcfb1d548ee", + "x-ms-routing-request-id": "WESTUS2:20210616T002243Z:329832c3-642f-466a-ac09-1fcfb1d548ee" }, "ResponseBody": [] }, @@ -5490,7 +5630,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2cd00555e2e6344095e7ae57660c8d38", "x-ms-return-client-request-id": "true" }, @@ -5499,17 +5639,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:46 GMT", + "Date": "Wed, 16 Jun 2021 00:22:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "020fefbc-93d3-4a92-9eb4-7956c6b1a523", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "020fefbc-93d3-4a92-9eb4-7956c6b1a523", - "x-ms-routing-request-id": "WESTUS2:20210519T190046Z:020fefbc-93d3-4a92-9eb4-7956c6b1a523" + "x-ms-correlation-request-id": "155b4dd2-8d27-4e69-bcef-8e890aabbbf7", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "155b4dd2-8d27-4e69-bcef-8e890aabbbf7", + "x-ms-routing-request-id": "WESTUS2:20210616T002244Z:155b4dd2-8d27-4e69-bcef-8e890aabbbf7" }, "ResponseBody": [] }, @@ -5518,7 +5658,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5dcf633a77a15e283cbd81e934285bd7", "x-ms-return-client-request-id": "true" }, @@ -5527,17 +5667,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:47 GMT", + "Date": "Wed, 16 Jun 2021 00:22:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "61a2877c-0303-4b5e-88dc-2efab1321cb3", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "61a2877c-0303-4b5e-88dc-2efab1321cb3", - "x-ms-routing-request-id": "WESTUS2:20210519T190047Z:61a2877c-0303-4b5e-88dc-2efab1321cb3" + "x-ms-correlation-request-id": "4024f665-16cb-4bba-8ffb-219138a17083", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4024f665-16cb-4bba-8ffb-219138a17083", + "x-ms-routing-request-id": "WESTUS2:20210616T002245Z:4024f665-16cb-4bba-8ffb-219138a17083" }, "ResponseBody": [] }, @@ -5546,7 +5686,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7aa7b99b638dd6accd7145e7c67e67b9", "x-ms-return-client-request-id": "true" }, @@ -5555,17 +5695,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:48 GMT", + "Date": "Wed, 16 Jun 2021 00:22:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b6e9e2ed-3563-4fa2-8d53-4764e916ab8d", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "b6e9e2ed-3563-4fa2-8d53-4764e916ab8d", - "x-ms-routing-request-id": "WESTUS2:20210519T190048Z:b6e9e2ed-3563-4fa2-8d53-4764e916ab8d" + "x-ms-correlation-request-id": "5fe9ade1-2314-4d14-93db-17359100e90f", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "5fe9ade1-2314-4d14-93db-17359100e90f", + "x-ms-routing-request-id": "WESTUS2:20210616T002246Z:5fe9ade1-2314-4d14-93db-17359100e90f" }, "ResponseBody": [] }, @@ -5574,7 +5714,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b5597ceb2b4ddb8dd72ef296057ff6d", "x-ms-return-client-request-id": "true" }, @@ -5583,17 +5723,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:49 GMT", + "Date": "Wed, 16 Jun 2021 00:22:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7d79dd47-6a89-46f8-b8f3-e36e037b2758", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "7d79dd47-6a89-46f8-b8f3-e36e037b2758", - "x-ms-routing-request-id": "WESTUS2:20210519T190050Z:7d79dd47-6a89-46f8-b8f3-e36e037b2758" + "x-ms-correlation-request-id": "278f03be-ab6e-4100-9162-0eca5f5dafde", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "278f03be-ab6e-4100-9162-0eca5f5dafde", + "x-ms-routing-request-id": "WESTUS2:20210616T002247Z:278f03be-ab6e-4100-9162-0eca5f5dafde" }, "ResponseBody": [] }, @@ -5602,7 +5742,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "adbbd68c1365d6aab7f88f30324197bd", "x-ms-return-client-request-id": "true" }, @@ -5611,17 +5751,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:50 GMT", + "Date": "Wed, 16 Jun 2021 00:22:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f5b6fb1c-0fe9-4169-af15-5065b70083a9", + "x-ms-correlation-request-id": "73b2168c-caaa-475d-849b-687b4cff572b", "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "f5b6fb1c-0fe9-4169-af15-5065b70083a9", - "x-ms-routing-request-id": "WESTUS2:20210519T190051Z:f5b6fb1c-0fe9-4169-af15-5065b70083a9" + "x-ms-request-id": "73b2168c-caaa-475d-849b-687b4cff572b", + "x-ms-routing-request-id": "WESTUS2:20210616T002248Z:73b2168c-caaa-475d-849b-687b4cff572b" }, "ResponseBody": [] }, @@ -5630,7 +5770,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c1ac85600d2e92201c99c1b73837576", "x-ms-return-client-request-id": "true" }, @@ -5639,17 +5779,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:51 GMT", + "Date": "Wed, 16 Jun 2021 00:22:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6", - "x-ms-routing-request-id": "WESTUS2:20210519T190052Z:5f01acb7-cbba-4672-8b8b-5dfcbfebe9e6" + "x-ms-correlation-request-id": "c74f937a-9bd8-4600-b25b-f56226361ccd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "c74f937a-9bd8-4600-b25b-f56226361ccd", + "x-ms-routing-request-id": "WESTUS2:20210616T002249Z:c74f937a-9bd8-4600-b25b-f56226361ccd" }, "ResponseBody": [] }, @@ -5658,7 +5798,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f05ad871bac3bb53ed7ea4bb2288ab9b", "x-ms-return-client-request-id": "true" }, @@ -5667,17 +5807,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:52 GMT", + "Date": "Wed, 16 Jun 2021 00:22:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "045df98d-301a-4b61-9e3f-7dc2bbac7794", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "045df98d-301a-4b61-9e3f-7dc2bbac7794", - "x-ms-routing-request-id": "WESTUS2:20210519T190053Z:045df98d-301a-4b61-9e3f-7dc2bbac7794" + "x-ms-correlation-request-id": "04f8fe52-98e8-4c75-a98f-372855ec2cbc", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "04f8fe52-98e8-4c75-a98f-372855ec2cbc", + "x-ms-routing-request-id": "WESTUS2:20210616T002250Z:04f8fe52-98e8-4c75-a98f-372855ec2cbc" }, "ResponseBody": [] }, @@ -5686,7 +5826,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "97d331da633c8c9ab3d1ab9c768e6233", "x-ms-return-client-request-id": "true" }, @@ -5695,17 +5835,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:53 GMT", + "Date": "Wed, 16 Jun 2021 00:22:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "810ef9dc-1224-44fc-b97c-4dbcc467f8d8", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "810ef9dc-1224-44fc-b97c-4dbcc467f8d8", - "x-ms-routing-request-id": "WESTUS2:20210519T190054Z:810ef9dc-1224-44fc-b97c-4dbcc467f8d8" + "x-ms-correlation-request-id": "30b8918d-3fd2-4f57-805c-9ea4a431c2e8", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "30b8918d-3fd2-4f57-805c-9ea4a431c2e8", + "x-ms-routing-request-id": "WESTUS2:20210616T002251Z:30b8918d-3fd2-4f57-805c-9ea4a431c2e8" }, "ResponseBody": [] }, @@ -5714,7 +5854,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5abe1882a7e69bfa755fae535b67c678", "x-ms-return-client-request-id": "true" }, @@ -5723,17 +5863,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:54 GMT", + "Date": "Wed, 16 Jun 2021 00:22:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6f60682b-7134-4f66-81dc-0e6766bda950", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "6f60682b-7134-4f66-81dc-0e6766bda950", - "x-ms-routing-request-id": "WESTUS2:20210519T190055Z:6f60682b-7134-4f66-81dc-0e6766bda950" + "x-ms-correlation-request-id": "19a0dac1-d176-45a3-94bf-89874ed925d3", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "19a0dac1-d176-45a3-94bf-89874ed925d3", + "x-ms-routing-request-id": "WESTUS2:20210616T002252Z:19a0dac1-d176-45a3-94bf-89874ed925d3" }, "ResponseBody": [] }, @@ -5742,7 +5882,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4240011edeb00d3a3dce3cf10eb6445f", "x-ms-return-client-request-id": "true" }, @@ -5751,17 +5891,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:55 GMT", + "Date": "Wed, 16 Jun 2021 00:22:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b06072ac-79bc-42c9-abc6-3f0415053a0d", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "b06072ac-79bc-42c9-abc6-3f0415053a0d", - "x-ms-routing-request-id": "WESTUS2:20210519T190056Z:b06072ac-79bc-42c9-abc6-3f0415053a0d" + "x-ms-correlation-request-id": "5f79dec4-8519-4038-85f1-5d1095d3813c", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "5f79dec4-8519-4038-85f1-5d1095d3813c", + "x-ms-routing-request-id": "WESTUS2:20210616T002253Z:5f79dec4-8519-4038-85f1-5d1095d3813c" }, "ResponseBody": [] }, @@ -5770,7 +5910,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0a39701c50c933b5373722ddb446304c", "x-ms-return-client-request-id": "true" }, @@ -5779,17 +5919,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:56 GMT", + "Date": "Wed, 16 Jun 2021 00:22:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "853079ec-b3f3-45af-9c1f-f77d1deb0ada", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "853079ec-b3f3-45af-9c1f-f77d1deb0ada", - "x-ms-routing-request-id": "WESTUS2:20210519T190057Z:853079ec-b3f3-45af-9c1f-f77d1deb0ada" + "x-ms-correlation-request-id": "6f4cf9b0-8e42-48b5-ae75-1e647110b44c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "6f4cf9b0-8e42-48b5-ae75-1e647110b44c", + "x-ms-routing-request-id": "WESTUS2:20210616T002254Z:6f4cf9b0-8e42-48b5-ae75-1e647110b44c" }, "ResponseBody": [] }, @@ -5798,7 +5938,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "757e320b204da483deb01c176a098dbe", "x-ms-return-client-request-id": "true" }, @@ -5807,17 +5947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:58 GMT", + "Date": "Wed, 16 Jun 2021 00:22:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5e1e13e6-30c9-411f-a067-69836f14dcc2", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "5e1e13e6-30c9-411f-a067-69836f14dcc2", - "x-ms-routing-request-id": "WESTUS2:20210519T190058Z:5e1e13e6-30c9-411f-a067-69836f14dcc2" + "x-ms-correlation-request-id": "0ced1f6d-68e8-4842-9ecb-96a0c446c308", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "0ced1f6d-68e8-4842-9ecb-96a0c446c308", + "x-ms-routing-request-id": "WESTUS2:20210616T002256Z:0ced1f6d-68e8-4842-9ecb-96a0c446c308" }, "ResponseBody": [] }, @@ -5826,7 +5966,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea374f1abc2ecdaf4c0d0a78bc5d59f6", "x-ms-return-client-request-id": "true" }, @@ -5835,17 +5975,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:00:59 GMT", + "Date": "Wed, 16 Jun 2021 00:22:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "42029123-6ffb-4102-8b89-72a043e8789c", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "42029123-6ffb-4102-8b89-72a043e8789c", - "x-ms-routing-request-id": "WESTUS2:20210519T190059Z:42029123-6ffb-4102-8b89-72a043e8789c" + "x-ms-correlation-request-id": "05b1d0fe-38ec-47c0-8fe2-c51e17f7f614", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "05b1d0fe-38ec-47c0-8fe2-c51e17f7f614", + "x-ms-routing-request-id": "WESTUS2:20210616T002257Z:05b1d0fe-38ec-47c0-8fe2-c51e17f7f614" }, "ResponseBody": [] }, @@ -5854,7 +5994,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dbe6f09ecf38fb11ed942c18339dc82e", "x-ms-return-client-request-id": "true" }, @@ -5863,17 +6003,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:00 GMT", + "Date": "Wed, 16 Jun 2021 00:22:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e7599428-d27e-49b8-b3ac-346559ff85aa", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "e7599428-d27e-49b8-b3ac-346559ff85aa", - "x-ms-routing-request-id": "WESTUS2:20210519T190100Z:e7599428-d27e-49b8-b3ac-346559ff85aa" + "x-ms-correlation-request-id": "8020d1b9-30bd-4ace-8ffe-5ed4fe934ed3", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8020d1b9-30bd-4ace-8ffe-5ed4fe934ed3", + "x-ms-routing-request-id": "WESTUS2:20210616T002258Z:8020d1b9-30bd-4ace-8ffe-5ed4fe934ed3" }, "ResponseBody": [] }, @@ -5882,7 +6022,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65c263aa450f4f1e83b02840150ae880", "x-ms-return-client-request-id": "true" }, @@ -5891,17 +6031,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:01 GMT", + "Date": "Wed, 16 Jun 2021 00:22:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b4fe6816-0e36-417b-bb5a-49d8cf4db24b", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "b4fe6816-0e36-417b-bb5a-49d8cf4db24b", - "x-ms-routing-request-id": "WESTUS2:20210519T190101Z:b4fe6816-0e36-417b-bb5a-49d8cf4db24b" + "x-ms-correlation-request-id": "660d83a3-a88e-46ba-a686-03eeddfb29b9", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "660d83a3-a88e-46ba-a686-03eeddfb29b9", + "x-ms-routing-request-id": "WESTUS2:20210616T002259Z:660d83a3-a88e-46ba-a686-03eeddfb29b9" }, "ResponseBody": [] }, @@ -5910,7 +6050,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7a792657b1234a853e3cfd998f969aaf", "x-ms-return-client-request-id": "true" }, @@ -5919,17 +6059,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:02 GMT", + "Date": "Wed, 16 Jun 2021 00:22:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f7315f95-f928-4274-b067-027dc310759a", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "f7315f95-f928-4274-b067-027dc310759a", - "x-ms-routing-request-id": "WESTUS2:20210519T190102Z:f7315f95-f928-4274-b067-027dc310759a" + "x-ms-correlation-request-id": "aacb826b-3fa2-4726-abe6-0870df835e2b", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "aacb826b-3fa2-4726-abe6-0870df835e2b", + "x-ms-routing-request-id": "WESTUS2:20210616T002300Z:aacb826b-3fa2-4726-abe6-0870df835e2b" }, "ResponseBody": [] }, @@ -5938,7 +6078,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "58cedc44f49a59e7d1965888a6d1e5e2", "x-ms-return-client-request-id": "true" }, @@ -5947,17 +6087,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:03 GMT", + "Date": "Wed, 16 Jun 2021 00:23:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2029c357-72f1-43fd-b072-26f743bb265c", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "2029c357-72f1-43fd-b072-26f743bb265c", - "x-ms-routing-request-id": "WESTUS2:20210519T190103Z:2029c357-72f1-43fd-b072-26f743bb265c" + "x-ms-correlation-request-id": "e82b134a-fce6-4639-9cbe-734e9f236e63", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "e82b134a-fce6-4639-9cbe-734e9f236e63", + "x-ms-routing-request-id": "WESTUS2:20210616T002301Z:e82b134a-fce6-4639-9cbe-734e9f236e63" }, "ResponseBody": [] }, @@ -5966,7 +6106,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dc1abac4e24f80ade7727d24784bfed", "x-ms-return-client-request-id": "true" }, @@ -5975,17 +6115,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:04 GMT", + "Date": "Wed, 16 Jun 2021 00:23:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f0c6e2e9-7645-43fa-9eec-9d61ea544a02", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "f0c6e2e9-7645-43fa-9eec-9d61ea544a02", - "x-ms-routing-request-id": "WESTUS2:20210519T190104Z:f0c6e2e9-7645-43fa-9eec-9d61ea544a02" + "x-ms-correlation-request-id": "d14944ce-f7f5-4789-906e-44dd7d8ca27f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "d14944ce-f7f5-4789-906e-44dd7d8ca27f", + "x-ms-routing-request-id": "WESTUS2:20210616T002302Z:d14944ce-f7f5-4789-906e-44dd7d8ca27f" }, "ResponseBody": [] }, @@ -5994,7 +6134,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38fb7916903b63e63e20a88c59fda36c", "x-ms-return-client-request-id": "true" }, @@ -6003,17 +6143,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:05 GMT", + "Date": "Wed, 16 Jun 2021 00:23:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab20af02-48e2-43c9-9f5e-bee234dc0129", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "ab20af02-48e2-43c9-9f5e-bee234dc0129", - "x-ms-routing-request-id": "WESTUS2:20210519T190105Z:ab20af02-48e2-43c9-9f5e-bee234dc0129" + "x-ms-correlation-request-id": "ffdb8492-81ee-4027-8888-751a836ca22c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ffdb8492-81ee-4027-8888-751a836ca22c", + "x-ms-routing-request-id": "WESTUS2:20210616T002303Z:ffdb8492-81ee-4027-8888-751a836ca22c" }, "ResponseBody": [] }, @@ -6022,7 +6162,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e4ed1b568cd4f68ad1d67922cd14114d", "x-ms-return-client-request-id": "true" }, @@ -6031,17 +6171,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:06 GMT", + "Date": "Wed, 16 Jun 2021 00:23:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "94c4ea5e-134f-409e-9e42-49f6f34b2e3c", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "94c4ea5e-134f-409e-9e42-49f6f34b2e3c", - "x-ms-routing-request-id": "WESTUS2:20210519T190106Z:94c4ea5e-134f-409e-9e42-49f6f34b2e3c" + "x-ms-correlation-request-id": "ccef8a4d-1cf6-4333-bbbe-411d7e253ea0", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "ccef8a4d-1cf6-4333-bbbe-411d7e253ea0", + "x-ms-routing-request-id": "WESTUS2:20210616T002304Z:ccef8a4d-1cf6-4333-bbbe-411d7e253ea0" }, "ResponseBody": [] }, @@ -6050,7 +6190,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2d716ad7acd51ba6c55ece04a57e9fe0", "x-ms-return-client-request-id": "true" }, @@ -6059,17 +6199,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:07 GMT", + "Date": "Wed, 16 Jun 2021 00:23:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6fdff3a6-8fe3-49d2-8527-f1937e052c07", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "6fdff3a6-8fe3-49d2-8527-f1937e052c07", - "x-ms-routing-request-id": "WESTUS2:20210519T190107Z:6fdff3a6-8fe3-49d2-8527-f1937e052c07" + "x-ms-correlation-request-id": "a9a7d3ed-0847-48ff-87bd-574f5ef6d0b8", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "a9a7d3ed-0847-48ff-87bd-574f5ef6d0b8", + "x-ms-routing-request-id": "WESTUS2:20210616T002305Z:a9a7d3ed-0847-48ff-87bd-574f5ef6d0b8" }, "ResponseBody": [] }, @@ -6078,7 +6218,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c7cbad3da978918ee05666516c3962a", "x-ms-return-client-request-id": "true" }, @@ -6087,17 +6227,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:08 GMT", + "Date": "Wed, 16 Jun 2021 00:23:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "da220927-9c93-44d8-bf24-fa4efe841e56", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "da220927-9c93-44d8-bf24-fa4efe841e56", - "x-ms-routing-request-id": "WESTUS2:20210519T190108Z:da220927-9c93-44d8-bf24-fa4efe841e56" + "x-ms-correlation-request-id": "106ec40c-bfd8-44c3-9de5-bc0be51fa109", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "106ec40c-bfd8-44c3-9de5-bc0be51fa109", + "x-ms-routing-request-id": "WESTUS2:20210616T002306Z:106ec40c-bfd8-44c3-9de5-bc0be51fa109" }, "ResponseBody": [] }, @@ -6106,7 +6246,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eeb45b0e768baa9774d11f76be865053", "x-ms-return-client-request-id": "true" }, @@ -6115,17 +6255,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:09 GMT", + "Date": "Wed, 16 Jun 2021 00:23:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "92bccdcf-bb35-4d5d-a5b9-a386d768075b", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "92bccdcf-bb35-4d5d-a5b9-a386d768075b", - "x-ms-routing-request-id": "WESTUS2:20210519T190109Z:92bccdcf-bb35-4d5d-a5b9-a386d768075b" + "x-ms-correlation-request-id": "468b5d8d-a8ed-4efd-b6ee-4672419fc6a1", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "468b5d8d-a8ed-4efd-b6ee-4672419fc6a1", + "x-ms-routing-request-id": "WESTUS2:20210616T002307Z:468b5d8d-a8ed-4efd-b6ee-4672419fc6a1" }, "ResponseBody": [] }, @@ -6134,7 +6274,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "124f9936e498fcb651e83ed045410501", "x-ms-return-client-request-id": "true" }, @@ -6143,17 +6283,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:10 GMT", + "Date": "Wed, 16 Jun 2021 00:23:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bd1306cf-2c68-4a72-89e9-cb385898658c", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "bd1306cf-2c68-4a72-89e9-cb385898658c", - "x-ms-routing-request-id": "WESTUS2:20210519T190110Z:bd1306cf-2c68-4a72-89e9-cb385898658c" + "x-ms-correlation-request-id": "3b214781-b163-4cda-a0a9-cff69df20fa8", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "3b214781-b163-4cda-a0a9-cff69df20fa8", + "x-ms-routing-request-id": "WESTUS2:20210616T002308Z:3b214781-b163-4cda-a0a9-cff69df20fa8" }, "ResponseBody": [] }, @@ -6162,7 +6302,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4af5a3c7b0ca5c5523d2b8c5bba2cb68", "x-ms-return-client-request-id": "true" }, @@ -6171,17 +6311,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:11 GMT", + "Date": "Wed, 16 Jun 2021 00:23:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d6115ee2-1630-4796-8c4b-d9d7fcadb3c3", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "d6115ee2-1630-4796-8c4b-d9d7fcadb3c3", - "x-ms-routing-request-id": "WESTUS2:20210519T190111Z:d6115ee2-1630-4796-8c4b-d9d7fcadb3c3" + "x-ms-correlation-request-id": "1b1e2ea5-d4f1-41a2-b9bc-a500b0198655", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "1b1e2ea5-d4f1-41a2-b9bc-a500b0198655", + "x-ms-routing-request-id": "WESTUS2:20210616T002309Z:1b1e2ea5-d4f1-41a2-b9bc-a500b0198655" }, "ResponseBody": [] }, @@ -6190,7 +6330,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7d2e13b583742992a5b79ca338c66433", "x-ms-return-client-request-id": "true" }, @@ -6199,17 +6339,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:12 GMT", + "Date": "Wed, 16 Jun 2021 00:23:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "18002a76-6885-49ef-875b-93a39bd13be8", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "18002a76-6885-49ef-875b-93a39bd13be8", - "x-ms-routing-request-id": "WESTUS2:20210519T190112Z:18002a76-6885-49ef-875b-93a39bd13be8" + "x-ms-correlation-request-id": "d33aad1b-f891-42be-ab32-ccf48a04d3c4", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "d33aad1b-f891-42be-ab32-ccf48a04d3c4", + "x-ms-routing-request-id": "WESTUS2:20210616T002310Z:d33aad1b-f891-42be-ab32-ccf48a04d3c4" }, "ResponseBody": [] }, @@ -6218,7 +6358,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1aae1dcc0691868843f2efc62cf041af", "x-ms-return-client-request-id": "true" }, @@ -6227,17 +6367,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:13 GMT", + "Date": "Wed, 16 Jun 2021 00:23:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c4b78376-19cb-4694-be97-258ba1f69f96", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "c4b78376-19cb-4694-be97-258ba1f69f96", - "x-ms-routing-request-id": "WESTUS2:20210519T190113Z:c4b78376-19cb-4694-be97-258ba1f69f96" + "x-ms-correlation-request-id": "941a3694-9155-44d3-9e28-467d32ae785a", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "941a3694-9155-44d3-9e28-467d32ae785a", + "x-ms-routing-request-id": "WESTUS2:20210616T002311Z:941a3694-9155-44d3-9e28-467d32ae785a" }, "ResponseBody": [] }, @@ -6246,7 +6386,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "321bd51c8812448d11cba41213b1245c", "x-ms-return-client-request-id": "true" }, @@ -6255,17 +6395,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:14 GMT", + "Date": "Wed, 16 Jun 2021 00:23:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9de63580-d626-4fa4-a38d-48ddbef4cd82", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "9de63580-d626-4fa4-a38d-48ddbef4cd82", - "x-ms-routing-request-id": "WESTUS2:20210519T190114Z:9de63580-d626-4fa4-a38d-48ddbef4cd82" + "x-ms-correlation-request-id": "7e2036a0-ba92-42cd-9788-0025af8b58f3", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "7e2036a0-ba92-42cd-9788-0025af8b58f3", + "x-ms-routing-request-id": "WESTUS2:20210616T002312Z:7e2036a0-ba92-42cd-9788-0025af8b58f3" }, "ResponseBody": [] }, @@ -6274,7 +6414,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9df9856db0f3aed78aa8398194cbfdb4", "x-ms-return-client-request-id": "true" }, @@ -6283,17 +6423,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:15 GMT", + "Date": "Wed, 16 Jun 2021 00:23:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a6e04ae8-5166-4dcc-ad72-e0900744a446", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "a6e04ae8-5166-4dcc-ad72-e0900744a446", - "x-ms-routing-request-id": "WESTUS2:20210519T190115Z:a6e04ae8-5166-4dcc-ad72-e0900744a446" + "x-ms-correlation-request-id": "df07092f-cc8c-4d0c-b5a7-ce80393bd5d9", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "df07092f-cc8c-4d0c-b5a7-ce80393bd5d9", + "x-ms-routing-request-id": "WESTUS2:20210616T002313Z:df07092f-cc8c-4d0c-b5a7-ce80393bd5d9" }, "ResponseBody": [] }, @@ -6302,7 +6442,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6286ed7531ab43208f6a08c561767391", "x-ms-return-client-request-id": "true" }, @@ -6311,17 +6451,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:16 GMT", + "Date": "Wed, 16 Jun 2021 00:23:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "28deecf9-74ab-4e30-b228-40ee2a1d4319", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "28deecf9-74ab-4e30-b228-40ee2a1d4319", - "x-ms-routing-request-id": "WESTUS2:20210519T190116Z:28deecf9-74ab-4e30-b228-40ee2a1d4319" + "x-ms-correlation-request-id": "a0ef92e9-b575-4f43-9ad0-b9a89aa78d9d", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a0ef92e9-b575-4f43-9ad0-b9a89aa78d9d", + "x-ms-routing-request-id": "WESTUS2:20210616T002314Z:a0ef92e9-b575-4f43-9ad0-b9a89aa78d9d" }, "ResponseBody": [] }, @@ -6330,7 +6470,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a75893cda4f76cbcfe6ca76a4f0baf46", "x-ms-return-client-request-id": "true" }, @@ -6339,17 +6479,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:17 GMT", + "Date": "Wed, 16 Jun 2021 00:23:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "789a9317-6e48-4c83-a4c8-ce74e7ddd534", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "789a9317-6e48-4c83-a4c8-ce74e7ddd534", - "x-ms-routing-request-id": "WESTUS2:20210519T190117Z:789a9317-6e48-4c83-a4c8-ce74e7ddd534" + "x-ms-correlation-request-id": "5d395bb9-2064-4e66-ade4-a76db0dfabb8", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "5d395bb9-2064-4e66-ade4-a76db0dfabb8", + "x-ms-routing-request-id": "WESTUS2:20210616T002315Z:5d395bb9-2064-4e66-ade4-a76db0dfabb8" }, "ResponseBody": [] }, @@ -6358,7 +6498,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "269cf0cec12b3cb064b50d89a8114d14", "x-ms-return-client-request-id": "true" }, @@ -6367,17 +6507,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:18 GMT", + "Date": "Wed, 16 Jun 2021 00:23:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "249fcff1-d8c9-4d4b-b379-e9c08262f064", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "249fcff1-d8c9-4d4b-b379-e9c08262f064", - "x-ms-routing-request-id": "WESTUS2:20210519T190118Z:249fcff1-d8c9-4d4b-b379-e9c08262f064" + "x-ms-correlation-request-id": "e8b4e58e-ead8-4969-81b5-8b26cccf8157", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "e8b4e58e-ead8-4969-81b5-8b26cccf8157", + "x-ms-routing-request-id": "WESTUS2:20210616T002316Z:e8b4e58e-ead8-4969-81b5-8b26cccf8157" }, "ResponseBody": [] }, @@ -6386,7 +6526,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01b4a7345673d1bd301a633f8ab6f484", "x-ms-return-client-request-id": "true" }, @@ -6395,17 +6535,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:19 GMT", + "Date": "Wed, 16 Jun 2021 00:23:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "aa38c557-e347-4177-b781-b2a2aebc6026", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "aa38c557-e347-4177-b781-b2a2aebc6026", - "x-ms-routing-request-id": "WESTUS2:20210519T190119Z:aa38c557-e347-4177-b781-b2a2aebc6026" + "x-ms-correlation-request-id": "aab2738f-63eb-437f-9b96-120bcfb99fda", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "aab2738f-63eb-437f-9b96-120bcfb99fda", + "x-ms-routing-request-id": "WESTUS2:20210616T002317Z:aab2738f-63eb-437f-9b96-120bcfb99fda" }, "ResponseBody": [] }, @@ -6414,7 +6554,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71f7c2ba4cda0c66e21c42419632c3ed", "x-ms-return-client-request-id": "true" }, @@ -6423,17 +6563,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:20 GMT", + "Date": "Wed, 16 Jun 2021 00:23:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1de87478-c233-4063-925b-a02aadcda552", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "1de87478-c233-4063-925b-a02aadcda552", - "x-ms-routing-request-id": "WESTUS2:20210519T190120Z:1de87478-c233-4063-925b-a02aadcda552" + "x-ms-correlation-request-id": "5ad430e1-3fd6-4551-b38c-3cc715cd080c", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "5ad430e1-3fd6-4551-b38c-3cc715cd080c", + "x-ms-routing-request-id": "WESTUS2:20210616T002318Z:5ad430e1-3fd6-4551-b38c-3cc715cd080c" }, "ResponseBody": [] }, @@ -6442,7 +6582,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a735931eae5777d233caf5105d70b2ae", "x-ms-return-client-request-id": "true" }, @@ -6451,17 +6591,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:21 GMT", + "Date": "Wed, 16 Jun 2021 00:23:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "56de00a5-f84e-4177-9d90-3ae2a0b21a6b", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "56de00a5-f84e-4177-9d90-3ae2a0b21a6b", - "x-ms-routing-request-id": "WESTUS2:20210519T190121Z:56de00a5-f84e-4177-9d90-3ae2a0b21a6b" + "x-ms-correlation-request-id": "c12b31f9-5d23-49ac-aa3a-708ae273b95b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "c12b31f9-5d23-49ac-aa3a-708ae273b95b", + "x-ms-routing-request-id": "WESTUS2:20210616T002319Z:c12b31f9-5d23-49ac-aa3a-708ae273b95b" }, "ResponseBody": [] }, @@ -6470,7 +6610,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6ce89c0dc1ae83a40a71e57147b3afe", "x-ms-return-client-request-id": "true" }, @@ -6479,17 +6619,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:22 GMT", + "Date": "Wed, 16 Jun 2021 00:23:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9aa3deb1-824c-45ca-86a4-744d83996eb7", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "9aa3deb1-824c-45ca-86a4-744d83996eb7", - "x-ms-routing-request-id": "WESTUS2:20210519T190123Z:9aa3deb1-824c-45ca-86a4-744d83996eb7" + "x-ms-correlation-request-id": "1e163f9c-5aa8-41b1-8507-f0fdf2538927", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "1e163f9c-5aa8-41b1-8507-f0fdf2538927", + "x-ms-routing-request-id": "WESTUS2:20210616T002320Z:1e163f9c-5aa8-41b1-8507-f0fdf2538927" }, "ResponseBody": [] }, @@ -6498,7 +6638,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f62076564c800b2cef7f3d0f5755ae71", "x-ms-return-client-request-id": "true" }, @@ -6507,17 +6647,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:23 GMT", + "Date": "Wed, 16 Jun 2021 00:23:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a400cbc2-8d2a-46fb-86dd-fcac9db2d36a", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "a400cbc2-8d2a-46fb-86dd-fcac9db2d36a", - "x-ms-routing-request-id": "WESTUS2:20210519T190124Z:a400cbc2-8d2a-46fb-86dd-fcac9db2d36a" + "x-ms-correlation-request-id": "b961853a-9016-4cba-90ba-92baf422d2e7", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "b961853a-9016-4cba-90ba-92baf422d2e7", + "x-ms-routing-request-id": "WESTUS2:20210616T002321Z:b961853a-9016-4cba-90ba-92baf422d2e7" }, "ResponseBody": [] }, @@ -6526,7 +6666,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0d81936add6342d2594d66af8f7b63b7", "x-ms-return-client-request-id": "true" }, @@ -6535,17 +6675,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:24 GMT", + "Date": "Wed, 16 Jun 2021 00:23:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7711553b-c3b3-45dc-9cb6-a0b66ae32d8f", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "7711553b-c3b3-45dc-9cb6-a0b66ae32d8f", - "x-ms-routing-request-id": "WESTUS2:20210519T190125Z:7711553b-c3b3-45dc-9cb6-a0b66ae32d8f" + "x-ms-correlation-request-id": "c2b87f0a-0c94-40b2-a258-4673a63723be", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "c2b87f0a-0c94-40b2-a258-4673a63723be", + "x-ms-routing-request-id": "WESTUS2:20210616T002322Z:c2b87f0a-0c94-40b2-a258-4673a63723be" }, "ResponseBody": [] }, @@ -6554,7 +6694,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e6b9f78fbb4f732d5cc2f69a9e2a90ea", "x-ms-return-client-request-id": "true" }, @@ -6563,17 +6703,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:25 GMT", + "Date": "Wed, 16 Jun 2021 00:23:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "db4c0d9f-c59f-44aa-9a5a-b0b334e58089", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "db4c0d9f-c59f-44aa-9a5a-b0b334e58089", - "x-ms-routing-request-id": "WESTUS2:20210519T190126Z:db4c0d9f-c59f-44aa-9a5a-b0b334e58089" + "x-ms-correlation-request-id": "e89f4edf-58d1-4f72-917f-11e4800274a1", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "e89f4edf-58d1-4f72-917f-11e4800274a1", + "x-ms-routing-request-id": "WESTUS2:20210616T002323Z:e89f4edf-58d1-4f72-917f-11e4800274a1" }, "ResponseBody": [] }, @@ -6582,7 +6722,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "80edacf92dfa799aa4de9d33e67c7c73", "x-ms-return-client-request-id": "true" }, @@ -6591,17 +6731,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:26 GMT", + "Date": "Wed, 16 Jun 2021 00:23:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3", - "x-ms-routing-request-id": "WESTUS2:20210519T190127Z:8a8b0597-ef2f-4bfd-9cdf-cc7178d05ed3" + "x-ms-correlation-request-id": "cc9b983b-d5e7-45bf-a2d0-31aab17e6d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "cc9b983b-d5e7-45bf-a2d0-31aab17e6d6f", + "x-ms-routing-request-id": "WESTUS2:20210616T002325Z:cc9b983b-d5e7-45bf-a2d0-31aab17e6d6f" }, "ResponseBody": [] }, @@ -6610,7 +6750,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "607f861cc79cae21660db0a0e637a32e", "x-ms-return-client-request-id": "true" }, @@ -6619,17 +6759,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:27 GMT", + "Date": "Wed, 16 Jun 2021 00:23:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b9435a8e-c508-4f9a-9991-40b547014dbc", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "b9435a8e-c508-4f9a-9991-40b547014dbc", - "x-ms-routing-request-id": "WESTUS2:20210519T190128Z:b9435a8e-c508-4f9a-9991-40b547014dbc" + "x-ms-correlation-request-id": "d364a92b-06ef-445c-b601-d1e82131093c", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "d364a92b-06ef-445c-b601-d1e82131093c", + "x-ms-routing-request-id": "WESTUS2:20210616T002326Z:d364a92b-06ef-445c-b601-d1e82131093c" }, "ResponseBody": [] }, @@ -6638,7 +6778,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e2b67cbce38e62bd5c4042711efa8de0", "x-ms-return-client-request-id": "true" }, @@ -6647,17 +6787,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:28 GMT", + "Date": "Wed, 16 Jun 2021 00:23:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1085845c-73e4-40d3-a45d-c0bc6af720bd", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-request-id": "1085845c-73e4-40d3-a45d-c0bc6af720bd", - "x-ms-routing-request-id": "WESTUS2:20210519T190129Z:1085845c-73e4-40d3-a45d-c0bc6af720bd" + "x-ms-correlation-request-id": "bf127d28-137c-437c-8a19-99bdda4b0761", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "bf127d28-137c-437c-8a19-99bdda4b0761", + "x-ms-routing-request-id": "WESTUS2:20210616T002327Z:bf127d28-137c-437c-8a19-99bdda4b0761" }, "ResponseBody": [] }, @@ -6666,7 +6806,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "187e834630ab324e8b3e1aed7cf9926c", "x-ms-return-client-request-id": "true" }, @@ -6675,17 +6815,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:29 GMT", + "Date": "Wed, 16 Jun 2021 00:23:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6f9c06b1-e138-4ca5-b391-a1ce3b84da4a", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "6f9c06b1-e138-4ca5-b391-a1ce3b84da4a", - "x-ms-routing-request-id": "WESTUS2:20210519T190130Z:6f9c06b1-e138-4ca5-b391-a1ce3b84da4a" + "x-ms-correlation-request-id": "d82cd7e2-d5dc-442f-bcc3-b77560dfdc0f", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "d82cd7e2-d5dc-442f-bcc3-b77560dfdc0f", + "x-ms-routing-request-id": "WESTUS2:20210616T002328Z:d82cd7e2-d5dc-442f-bcc3-b77560dfdc0f" }, "ResponseBody": [] }, @@ -6694,23 +6834,1535 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "69766e3a99c638e4c81d035b84b0906b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "01ab747d-c1e6-4923-a60a-ca93642ab636", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "01ab747d-c1e6-4923-a60a-ca93642ab636", + "x-ms-routing-request-id": "WESTUS2:20210616T002329Z:01ab747d-c1e6-4923-a60a-ca93642ab636" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6359d07f8bb98c832d835750c9d0e562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f31d7fd4-85c9-4b64-ae4a-718ec45b17e3", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "f31d7fd4-85c9-4b64-ae4a-718ec45b17e3", + "x-ms-routing-request-id": "WESTUS2:20210616T002330Z:f31d7fd4-85c9-4b64-ae4a-718ec45b17e3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "af36d6ae2383ad199e45508d2cf3adda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f1d9664e-70ba-4225-a0d2-d11f3d6d7577", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "f1d9664e-70ba-4225-a0d2-d11f3d6d7577", + "x-ms-routing-request-id": "WESTUS2:20210616T002331Z:f1d9664e-70ba-4225-a0d2-d11f3d6d7577" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ac6daead2f9fafb3eaea3c4241936ff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "19edcdcb-d4fd-4ddb-ace8-cb69b5dcb23a", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "19edcdcb-d4fd-4ddb-ace8-cb69b5dcb23a", + "x-ms-routing-request-id": "WESTUS2:20210616T002332Z:19edcdcb-d4fd-4ddb-ace8-cb69b5dcb23a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aeada037e0795be8b6acc4733bf55f39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dd90e447-3bd3-4dfe-9f1e-55ddd9d055ac", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "dd90e447-3bd3-4dfe-9f1e-55ddd9d055ac", + "x-ms-routing-request-id": "WESTUS2:20210616T002333Z:dd90e447-3bd3-4dfe-9f1e-55ddd9d055ac" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1aa27dd538627ec32286c499e7d76b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7198198c-7c35-455f-9490-915e0439ce4e", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7198198c-7c35-455f-9490-915e0439ce4e", + "x-ms-routing-request-id": "WESTUS2:20210616T002334Z:7198198c-7c35-455f-9490-915e0439ce4e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c5658d5ff46cd60c612f6f36b4074f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d67c56e2-1ad8-4d68-902d-c946d6c7ba3e", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "d67c56e2-1ad8-4d68-902d-c946d6c7ba3e", + "x-ms-routing-request-id": "WESTUS2:20210616T002335Z:d67c56e2-1ad8-4d68-902d-c946d6c7ba3e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c46c028b54f1ff94dd2e8bf21b4e74df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a88762de-d453-432e-8a0b-7164316d6553", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "a88762de-d453-432e-8a0b-7164316d6553", + "x-ms-routing-request-id": "WESTUS2:20210616T002336Z:a88762de-d453-432e-8a0b-7164316d6553" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e29db940d39fd6f31cd5545042cf13e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9fcb7493-fd40-45b2-a8e6-1e871643c34a", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "9fcb7493-fd40-45b2-a8e6-1e871643c34a", + "x-ms-routing-request-id": "WESTUS2:20210616T002337Z:9fcb7493-fd40-45b2-a8e6-1e871643c34a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e40dcf12a76a8119c357ae17736db177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f815fa82-b00a-45b6-872b-ac668f244eb8", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "f815fa82-b00a-45b6-872b-ac668f244eb8", + "x-ms-routing-request-id": "WESTUS2:20210616T002338Z:f815fa82-b00a-45b6-872b-ac668f244eb8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b1b2169d91a2b8550f96a71c0044bc0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a664141b-aaea-4864-9b2c-6b9d250b8ba8", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a664141b-aaea-4864-9b2c-6b9d250b8ba8", + "x-ms-routing-request-id": "WESTUS2:20210616T002339Z:a664141b-aaea-4864-9b2c-6b9d250b8ba8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4be0a91b904199759f1c1f4824dc62ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d001a430-10af-43ee-955e-fc8b5ca03772", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "d001a430-10af-43ee-955e-fc8b5ca03772", + "x-ms-routing-request-id": "WESTUS2:20210616T002340Z:d001a430-10af-43ee-955e-fc8b5ca03772" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2bb2dd23611d803f7a55d5d3fffd807f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "067f98ca-f349-44c0-af03-1e0796352c96", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "067f98ca-f349-44c0-af03-1e0796352c96", + "x-ms-routing-request-id": "WESTUS2:20210616T002341Z:067f98ca-f349-44c0-af03-1e0796352c96" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cafca09a668d0d35a1191286710c9332", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9d17e04e-51ac-4781-bd07-84481ee89870", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "9d17e04e-51ac-4781-bd07-84481ee89870", + "x-ms-routing-request-id": "WESTUS2:20210616T002342Z:9d17e04e-51ac-4781-bd07-84481ee89870" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "23f8f9339091b9f0695fd1ecbaa199a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "470864aa-f666-4330-a1b4-315ce1120c93", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "470864aa-f666-4330-a1b4-315ce1120c93", + "x-ms-routing-request-id": "WESTUS2:20210616T002343Z:470864aa-f666-4330-a1b4-315ce1120c93" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "84ada09b98e0bd21a7a58a044fb90f6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8bb3133e-7050-42d5-b3f6-37b2aa1da440", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "8bb3133e-7050-42d5-b3f6-37b2aa1da440", + "x-ms-routing-request-id": "WESTUS2:20210616T002344Z:8bb3133e-7050-42d5-b3f6-37b2aa1da440" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "069fa2c15d040aeeaf42612d944952ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a69bd291-5da5-4d37-bcc1-ec74c31dec4b", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "a69bd291-5da5-4d37-bcc1-ec74c31dec4b", + "x-ms-routing-request-id": "WESTUS2:20210616T002345Z:a69bd291-5da5-4d37-bcc1-ec74c31dec4b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d1ea6f7f0f5f9b52d73b7beb06ec69b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "00ed21f9-2af4-4f37-9d4c-0a4ba3423175", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "00ed21f9-2af4-4f37-9d4c-0a4ba3423175", + "x-ms-routing-request-id": "WESTUS2:20210616T002346Z:00ed21f9-2af4-4f37-9d4c-0a4ba3423175" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "182b645093013e9db2a3d49d37f4285d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "85603e39-e3a4-424c-92b5-daa0c01e03ec", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "85603e39-e3a4-424c-92b5-daa0c01e03ec", + "x-ms-routing-request-id": "WESTUS2:20210616T002347Z:85603e39-e3a4-424c-92b5-daa0c01e03ec" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "df848a523dceb10e4f042fc9e10203c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cfab9744-005b-4e01-a4ef-e14db123303b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "cfab9744-005b-4e01-a4ef-e14db123303b", + "x-ms-routing-request-id": "WESTUS2:20210616T002348Z:cfab9744-005b-4e01-a4ef-e14db123303b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30dcb1d93a1eecfed2ac1ebb3bb564e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "621cee41-58c5-41e1-bce8-4164549efd1d", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "621cee41-58c5-41e1-bce8-4164549efd1d", + "x-ms-routing-request-id": "WESTUS2:20210616T002349Z:621cee41-58c5-41e1-bce8-4164549efd1d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7b991e128a6712e15579c8fd64d45cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b8767568-45fa-4064-85a7-3bec2860f66d", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "b8767568-45fa-4064-85a7-3bec2860f66d", + "x-ms-routing-request-id": "WESTUS2:20210616T002350Z:b8767568-45fa-4064-85a7-3bec2860f66d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "85c3109ff817183f8c980d211f53769a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "15e6437d-d792-4ef5-986d-4e9dc8e44392", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "15e6437d-d792-4ef5-986d-4e9dc8e44392", + "x-ms-routing-request-id": "WESTUS2:20210616T002351Z:15e6437d-d792-4ef5-986d-4e9dc8e44392" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c3b64ba088684f5bcfc9daa4710188fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2dbefa78-ac36-442e-a23c-ee485e1e16bf", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "2dbefa78-ac36-442e-a23c-ee485e1e16bf", + "x-ms-routing-request-id": "WESTUS2:20210616T002352Z:2dbefa78-ac36-442e-a23c-ee485e1e16bf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2a1b6e50def11acbde81efcf7cc0f302", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "da78f1e2-7abf-4fc2-92b1-6f7696643663", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "da78f1e2-7abf-4fc2-92b1-6f7696643663", + "x-ms-routing-request-id": "WESTUS2:20210616T002354Z:da78f1e2-7abf-4fc2-92b1-6f7696643663" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "185d2e03981d1747b574b64d1d9aa68b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "280d71f7-707d-46e3-bf97-101646fb58ae", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "280d71f7-707d-46e3-bf97-101646fb58ae", + "x-ms-routing-request-id": "WESTUS2:20210616T002355Z:280d71f7-707d-46e3-bf97-101646fb58ae" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0d00f0f4b37c1a87f9ce5e7998cd20f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4964f75f-9d30-4dff-b6dc-b3230ecddc68", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "4964f75f-9d30-4dff-b6dc-b3230ecddc68", + "x-ms-routing-request-id": "WESTUS2:20210616T002356Z:4964f75f-9d30-4dff-b6dc-b3230ecddc68" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "42a1d8d66fa4b8e02603757c277efd44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "40873da9-a6a1-4d48-a56f-adaa9b403b61", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "40873da9-a6a1-4d48-a56f-adaa9b403b61", + "x-ms-routing-request-id": "WESTUS2:20210616T002357Z:40873da9-a6a1-4d48-a56f-adaa9b403b61" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6dbf64da42efb7ca859b9881b3607e28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1fbfb646-b6b0-4e7a-b45d-f3204b077535", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "1fbfb646-b6b0-4e7a-b45d-f3204b077535", + "x-ms-routing-request-id": "WESTUS2:20210616T002358Z:1fbfb646-b6b0-4e7a-b45d-f3204b077535" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4477a7a263f9a0e72f188a34d62b9901", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:23:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "43de360c-4254-4439-98b5-642b793be859", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "43de360c-4254-4439-98b5-642b793be859", + "x-ms-routing-request-id": "WESTUS2:20210616T002359Z:43de360c-4254-4439-98b5-642b793be859" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "350ca09e64cc931f0de9bd08d75e04c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4277915d-cc7b-4d75-9eeb-c90bf04ecc59", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "4277915d-cc7b-4d75-9eeb-c90bf04ecc59", + "x-ms-routing-request-id": "WESTUS2:20210616T002400Z:4277915d-cc7b-4d75-9eeb-c90bf04ecc59" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "80da4c85b807764b7d1f3ed6b896e159", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f1799938-c3cb-4aea-b14b-d398bd1af5d4", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "f1799938-c3cb-4aea-b14b-d398bd1af5d4", + "x-ms-routing-request-id": "WESTUS2:20210616T002401Z:f1799938-c3cb-4aea-b14b-d398bd1af5d4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12e2960149543e5c87e3360fa6dec8d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c526d0b3-362c-4b7c-957f-57952f97ab4e", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "c526d0b3-362c-4b7c-957f-57952f97ab4e", + "x-ms-routing-request-id": "WESTUS2:20210616T002402Z:c526d0b3-362c-4b7c-957f-57952f97ab4e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "89aec4141951e6fa5595b7ad2549db77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6d79ba6a-ced2-4f90-a224-68f89fbcc3d2", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "6d79ba6a-ced2-4f90-a224-68f89fbcc3d2", + "x-ms-routing-request-id": "WESTUS2:20210616T002403Z:6d79ba6a-ced2-4f90-a224-68f89fbcc3d2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40076308f27c3b70ef9bf823813bd09e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab406827-1db5-4eb5-a9ca-4a68bf10934a", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "ab406827-1db5-4eb5-a9ca-4a68bf10934a", + "x-ms-routing-request-id": "WESTUS2:20210616T002404Z:ab406827-1db5-4eb5-a9ca-4a68bf10934a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f3c26e5657e7e7079cfcbcbf91af183e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2118063a-4c8d-45cf-85f8-c5446ba828d5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "2118063a-4c8d-45cf-85f8-c5446ba828d5", + "x-ms-routing-request-id": "WESTUS2:20210616T002405Z:2118063a-4c8d-45cf-85f8-c5446ba828d5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4306bf0888d72154537399b621d66419", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3422f549-f3e0-416b-9473-b0cc7ce1cb92", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "3422f549-f3e0-416b-9473-b0cc7ce1cb92", + "x-ms-routing-request-id": "WESTUS2:20210616T002406Z:3422f549-f3e0-416b-9473-b0cc7ce1cb92" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b75619c5e787b08f5b1fa37f35b1aa40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "00222db5-4bc6-4d7b-8d13-1d796b12104a", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "00222db5-4bc6-4d7b-8d13-1d796b12104a", + "x-ms-routing-request-id": "WESTUS2:20210616T002407Z:00222db5-4bc6-4d7b-8d13-1d796b12104a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c21ab9838c34cec71aa09f74bd51c6c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "129e7fb0-a6b3-4f1c-b5e5-849af44e5df2", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "129e7fb0-a6b3-4f1c-b5e5-849af44e5df2", + "x-ms-routing-request-id": "WESTUS2:20210616T002408Z:129e7fb0-a6b3-4f1c-b5e5-849af44e5df2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "78faa298605821b72f56e7b7e4d4eca2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "42ba8938-0334-4630-bbcd-1202b76b1da4", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "42ba8938-0334-4630-bbcd-1202b76b1da4", + "x-ms-routing-request-id": "WESTUS2:20210616T002409Z:42ba8938-0334-4630-bbcd-1202b76b1da4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "673259c8a1bc38e551889de6481bf309", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4e42d43f-7d10-498e-93e8-265547d17d85", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "4e42d43f-7d10-498e-93e8-265547d17d85", + "x-ms-routing-request-id": "WESTUS2:20210616T002410Z:4e42d43f-7d10-498e-93e8-265547d17d85" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92e7dd5932b722e702f993dea50fe945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a39a71fc-2f62-4fd6-9498-73f66d9435fb", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "a39a71fc-2f62-4fd6-9498-73f66d9435fb", + "x-ms-routing-request-id": "WESTUS2:20210616T002411Z:a39a71fc-2f62-4fd6-9498-73f66d9435fb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "64abfdb35e1ef609bdc226d0c3d0d813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e075a46d-f101-4a45-a087-e070153598ff", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "e075a46d-f101-4a45-a087-e070153598ff", + "x-ms-routing-request-id": "WESTUS2:20210616T002412Z:e075a46d-f101-4a45-a087-e070153598ff" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "065ede6359ec96ea711065c20e069342", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "023b8758-d2fb-44ad-8f30-c7884a29604b", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "023b8758-d2fb-44ad-8f30-c7884a29604b", + "x-ms-routing-request-id": "WESTUS2:20210616T002413Z:023b8758-d2fb-44ad-8f30-c7884a29604b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a33579e8e70faead3f1d5f50b175e32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a72ee4d1-0f4f-4fcd-b068-e5a28ac9ff1e", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "a72ee4d1-0f4f-4fcd-b068-e5a28ac9ff1e", + "x-ms-routing-request-id": "WESTUS2:20210616T002414Z:a72ee4d1-0f4f-4fcd-b068-e5a28ac9ff1e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c67b7f20e2b15a581214f20ef947e7b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c8701de2-5add-4b4c-b506-43cb7fca268c", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "c8701de2-5add-4b4c-b506-43cb7fca268c", + "x-ms-routing-request-id": "WESTUS2:20210616T002415Z:c8701de2-5add-4b4c-b506-43cb7fca268c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b32e42e8e9dd4a3f36332fb84f48b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b8c9b26f-287c-4dca-b7d7-ffdf3af98aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "b8c9b26f-287c-4dca-b7d7-ffdf3af98aa8", + "x-ms-routing-request-id": "WESTUS2:20210616T002416Z:b8c9b26f-287c-4dca-b7d7-ffdf3af98aa8" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8fa132b2cc8abb90fed8385c9bdc018c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dca9fa28-d930-421a-937f-b47bc12b0ac2", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "dca9fa28-d930-421a-937f-b47bc12b0ac2", + "x-ms-routing-request-id": "WESTUS2:20210616T002417Z:dca9fa28-d930-421a-937f-b47bc12b0ac2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27c61d0af2e49295dca7d34daf5dd61d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d81fa3d6-a19f-451c-b092-180cf61d831a", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "d81fa3d6-a19f-451c-b092-180cf61d831a", + "x-ms-routing-request-id": "WESTUS2:20210616T002418Z:d81fa3d6-a19f-451c-b092-180cf61d831a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c65c988957a5622c53766dc455473816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9e2bbf10-e0c1-4f0c-9b6d-6dd8453ae3bc", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "9e2bbf10-e0c1-4f0c-9b6d-6dd8453ae3bc", + "x-ms-routing-request-id": "WESTUS2:20210616T002419Z:9e2bbf10-e0c1-4f0c-9b6d-6dd8453ae3bc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "66f0a662632ebf759d0fb3e3f8430ca1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "de6fc461-41ef-4a21-980a-9d9f56b8397b", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "de6fc461-41ef-4a21-980a-9d9f56b8397b", + "x-ms-routing-request-id": "WESTUS2:20210616T002420Z:de6fc461-41ef-4a21-980a-9d9f56b8397b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "03d21a023a80b2e7f163d36e85d03c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b3ba1e51-6407-4d8d-87c3-5b853eb059d0", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b3ba1e51-6407-4d8d-87c3-5b853eb059d0", + "x-ms-routing-request-id": "WESTUS2:20210616T002421Z:b3ba1e51-6407-4d8d-87c3-5b853eb059d0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09eabc6e706d25ef239c2995a4496910", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:22 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a27cf1eb-b54e-4561-afb1-7a4951d279c9", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "a27cf1eb-b54e-4561-afb1-7a4951d279c9", + "x-ms-routing-request-id": "WESTUS2:20210616T002423Z:a27cf1eb-b54e-4561-afb1-7a4951d279c9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3bc2cc6a35742896be3d74ca900739cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:24:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8ab77ec0-a1de-4e42-b7dc-dde6b9a30243", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "8ab77ec0-a1de-4e42-b7dc-dde6b9a30243", + "x-ms-routing-request-id": "WESTUS2:20210616T002424Z:8ab77ec0-a1de-4e42-b7dc-dde6b9a30243" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzUwMjUtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3b741ed2025892332aade0e310510ea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 19:01:30 GMT", + "Date": "Wed, 16 Jun 2021 00:24:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12ab1588-28b6-4408-8e7e-b6e0f1cf3581", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "12ab1588-28b6-4408-8e7e-b6e0f1cf3581", - "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:12ab1588-28b6-4408-8e7e-b6e0f1cf3581" + "x-ms-correlation-request-id": "7ec6fadd-5940-4dea-b8ea-075e6e9202b2", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "7ec6fadd-5940-4dea-b8ea-075e6e9202b2", + "x-ms-routing-request-id": "WESTUS2:20210616T002425Z:7ec6fadd-5940-4dea-b8ea-075e6e9202b2" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json index adb5656e87cb..7f3c71d8c3b1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update().json @@ -6,7 +6,8 @@ "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.19043 )", + "traceparent": "00-e3cae5eae38100478781c4de27b3de8b-555d4f9e4d7b274e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e094e55c30eb7c1f263909ff08d25c0e", "x-ms-return-client-request-id": "true" }, @@ -14,22 +15,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:30 GMT", + "Date": "Wed, 16 Jun 2021 00:06:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df78f467-004d-4a68-96be-68f21a53deec", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "df78f467-004d-4a68-96be-68f21a53deec", - "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:df78f467-004d-4a68-96be-68f21a53deec" + "x-ms-correlation-request-id": "8c8cedd7-e4a8-493e-a33f-f25763f9ce5e", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "8c8cedd7-e4a8-493e-a33f-f25763f9ce5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000634Z:8c8cedd7-e4a8-493e-a33f-f25763f9ce5e" }, "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", @@ -49,8 +54,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1d84120ab0796e4db68b505694d07f35-1ef7719e11092f44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-8a9066a0bb823e449cdd36981a270ae6-152455c0b2372840-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "175a7e2f248b823e718c747dd3a0d29b", "x-ms-return-client-request-id": "true" }, @@ -63,15 +68,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:31 GMT", + "Date": "Wed, 16 Jun 2021 00:06:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d28e8292-58ce-47a6-a008-2373228503c3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "d28e8292-58ce-47a6-a008-2373228503c3", - "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:d28e8292-58ce-47a6-a008-2373228503c3" + "x-ms-correlation-request-id": "88c7cdad-b226-43eb-ba58-d0dd03117fc5", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "88c7cdad-b226-43eb-ba58-d0dd03117fc5", + "x-ms-routing-request-id": "WESTUS2:20210616T000634Z:88c7cdad-b226-43eb-ba58-d0dd03117fc5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6338", @@ -92,8 +97,7 @@ "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-6fde6a829817b742ac37b0ec8d4e01f0-6ec3e1776b3f8f42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5893c882a9998b6f87dc1469b1bbedd2", "x-ms-return-client-request-id": "true" }, @@ -105,15 +109,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:31 GMT", + "Date": "Wed, 16 Jun 2021 00:06:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afc21987-272f-4f22-99b4-36ba7252bf71", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "afc21987-272f-4f22-99b4-36ba7252bf71", - "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:afc21987-272f-4f22-99b4-36ba7252bf71" + "x-ms-correlation-request-id": "7bb06740-9ffa-49af-bfba-9a9139aa8848", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "7bb06740-9ffa-49af-bfba-9a9139aa8848", + "x-ms-routing-request-id": "WESTUS2:20210616T000635Z:7bb06740-9ffa-49af-bfba-9a9139aa8848" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6338", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json index cd9bdfc766af..12b16ed92fac 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/Update()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef2f-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22bcc7038d78f6fd045efe99ff9aada2", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:31 GMT", + "Date": "Wed, 16 Jun 2021 00:06:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d987a5b-79e2-421b-9006-c73528bb29db", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "6d987a5b-79e2-421b-9006-c73528bb29db", - "x-ms-routing-request-id": "WESTUS2:20210519T190131Z:6d987a5b-79e2-421b-9006-c73528bb29db" + "x-ms-correlation-request-id": "1000cfde-9a27-4c94-aa7a-ffdd567418eb", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "1000cfde-9a27-4c94-aa7a-ffdd567418eb", + "x-ms-routing-request-id": "WESTUS2:20210616T000631Z:1000cfde-9a27-4c94-aa7a-ffdd567418eb" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-efbae915a992094aa692cf5710a0cabc-c2ebf343f3a68944-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-307ff7370199ad478dfa39d2f8624381-f698b388d8c0a342-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7c16de3ea2215c13961a3b1c0ce9393", "x-ms-return-client-request-id": "true" }, @@ -64,15 +67,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:32 GMT", + "Date": "Wed, 16 Jun 2021 00:06:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3a929f3-1c1c-4658-a604-e59641920d19", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "d3a929f3-1c1c-4658-a604-e59641920d19", - "x-ms-routing-request-id": "WESTUS2:20210519T190132Z:d3a929f3-1c1c-4658-a604-e59641920d19" + "x-ms-correlation-request-id": "2bed6cb0-5dca-4832-997f-b4dc93a74f7e", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "2bed6cb0-5dca-4832-997f-b4dc93a74f7e", + "x-ms-routing-request-id": "WESTUS2:20210616T000632Z:2bed6cb0-5dca-4832-997f-b4dc93a74f7e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8986", @@ -93,7 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-6dd20946d762714cb8d4dd8856224178-a2046c80788a4b42-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ff17edafe1050ffbfffe793a7aeef6d", "x-ms-return-client-request-id": "true" }, @@ -105,15 +109,15 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:32 GMT", + "Date": "Wed, 16 Jun 2021 00:06:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a821d65-a050-44fb-8c5e-253204323cfb", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "9a821d65-a050-44fb-8c5e-253204323cfb", - "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:9a821d65-a050-44fb-8c5e-253204323cfb" + "x-ms-correlation-request-id": "a9e017ae-4ac2-4e24-932f-06d10948cc19", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "a9e017ae-4ac2-4e24-932f-06d10948cc19", + "x-ms-routing-request-id": "WESTUS2:20210616T000632Z:a9e017ae-4ac2-4e24-932f-06d10948cc19" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8986", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json index ad54e6ea3acb..c9708051d08f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources().json @@ -6,7 +6,7 @@ "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.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2bbb502d2d07e99f4139851538648a8", "x-ms-return-client-request-id": "true" }, @@ -14,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:32 GMT", + "Date": "Wed, 16 Jun 2021 00:06:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee", - "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:4d7d1b0d-1735-4ba3-a17a-fbbba906f5ee" + "x-ms-correlation-request-id": "e7095b5c-a8ff-4556-99d5-9fb7dd24aa30", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "e7095b5c-a8ff-4556-99d5-9fb7dd24aa30", + "x-ms-routing-request-id": "WESTUS2:20210616T000635Z:e7095b5c-a8ff-4556-99d5-9fb7dd24aa30" }, "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", @@ -49,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-27aa784989c8eb4a84ea034d9fa20973-2a8642d84edead4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-60006c5a8671dc48ae50ab12a370c024-23b881289ec9eb43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d76040e41a092731af71dce74da7833", "x-ms-return-client-request-id": "true" }, @@ -58,20 +62,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:33 GMT", + "Date": "Wed, 16 Jun 2021 00:06:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1120882-3b6c-494c-a280-eb6a6f882f0b", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "f1120882-3b6c-494c-a280-eb6a6f882f0b", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:f1120882-3b6c-494c-a280-eb6a6f882f0b" + "x-ms-correlation-request-id": "fc21cbcf-8955-4c22-aa8d-3fe8b3d007dd", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "fc21cbcf-8955-4c22-aa8d-3fe8b3d007dd", + "x-ms-routing-request-id": "WESTUS2:20210616T000636Z:fc21cbcf-8955-4c22-aa8d-3fe8b3d007dd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2574", @@ -92,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-283c9f9bec20414da1f24bf7dc777eb5-474964ad7e981d45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-46bc4bdb85e165488bc2a3593981149c-e14db3bc8566fd44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "00745b9292fb7b23b1e64c1a3b2733c4", "x-ms-return-client-request-id": "true" }, @@ -101,20 +105,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:33 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "879b304f-c5b3-40cd-bff5-b715f9f0e6b2", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "879b304f-c5b3-40cd-bff5-b715f9f0e6b2", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:879b304f-c5b3-40cd-bff5-b715f9f0e6b2" + "x-ms-correlation-request-id": "10fa777c-b0c8-4afe-b075-5367df622538", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "10fa777c-b0c8-4afe-b075-5367df622538", + "x-ms-routing-request-id": "WESTUS2:20210616T000636Z:10fa777c-b0c8-4afe-b075-5367df622538" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5891", @@ -133,7 +137,6 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-64aaa9069489cb42a6a6a7a49e6dcb73-666c29ef17760547-00", "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7cfa9b0b73623f47b5da7baf7f391f1d", "x-ms-return-client-request-id": "true" @@ -142,17 +145,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:33 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "143e84cf-5bc7-45bb-9c3f-855499d7bb08", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "143e84cf-5bc7-45bb-9c3f-855499d7bb08", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:143e84cf-5bc7-45bb-9c3f-855499d7bb08" + "x-ms-correlation-request-id": "60d66b4f-84d0-4ed3-bc8b-812465414bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "60d66b4f-84d0-4ed3-bc8b-812465414bbe", + "x-ms-routing-request-id": "WESTUS2:20210616T000636Z:60d66b4f-84d0-4ed3-bc8b-812465414bbe" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -232,9 +235,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -305,9 +310,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -473,6 +480,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -520,9 +535,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -593,9 +610,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -762,6 +781,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -809,9 +836,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -883,9 +912,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -957,9 +988,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1030,9 +1063,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1105,9 +1140,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1180,9 +1217,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1211,6 +1250,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1266,9 +1306,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1339,9 +1381,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1411,9 +1455,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1474,9 +1520,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1546,9 +1594,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1611,9 +1661,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1676,9 +1728,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1749,9 +1803,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1814,7 +1870,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1857,9 +1914,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1911,9 +1970,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1964,9 +2025,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2016,9 +2079,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2063,6 +2128,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2106,9 +2172,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2152,9 +2220,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2198,9 +2268,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2384,9 +2456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2432,9 +2506,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2480,9 +2556,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2528,9 +2606,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2576,9 +2656,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2624,9 +2706,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2784,6 +2868,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2831,9 +2923,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2896,9 +2990,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2960,9 +3056,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3009,9 +3107,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3056,7 +3156,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3196,6 +3297,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3243,7 +3352,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3288,7 +3398,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3333,7 +3444,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3377,7 +3489,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3421,7 +3534,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3465,7 +3579,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3509,7 +3624,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3553,7 +3669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3597,9 +3714,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3663,9 +3782,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3715,9 +3836,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3860,6 +3983,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3907,9 +4038,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4052,6 +4185,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4069,15 +4210,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2574/providers/Microsoft.Compute/availabilitySets/test-aset4448?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2574/providers/Microsoft.Compute/availabilitySets/test-aset4448?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-64aaa9069489cb42a6a6a7a49e6dcb73-d37edc3e22cbb648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33edf46d12ab537221ee5a2777dfcfea", "x-ms-return-client-request-id": "true" }, @@ -4097,7 +4237,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4107,11 +4247,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "33edf46d12ab537221ee5a2777dfcfea", - "x-ms-correlation-request-id": "da194364-47a1-4315-8a8c-b4b848e187f0", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1193", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "6e7a8366-108c-4c11-8bcb-94be2d4925f9", - "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:da194364-47a1-4315-8a8c-b4b848e187f0" + "x-ms-correlation-request-id": "6178efee-3768-4c45-9ec4-ac71a93c600d", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1129", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "42d0fdf1-461f-49c3-92b9-6f1d146af862", + "x-ms-routing-request-id": "WESTUS2:20210616T000637Z:6178efee-3768-4c45-9ec4-ac71a93c600d" }, "ResponseBody": [ "{\r\n", @@ -4138,7 +4278,7 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33cdfc2d9146f8e029a75b731820c8d5", "x-ms-return-client-request-id": "true" }, @@ -4152,17 +4292,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "60c614bf-14c0-4bfa-ac05-1749d20c110c", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "60c614bf-14c0-4bfa-ac05-1749d20c110c", - "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:60c614bf-14c0-4bfa-ac05-1749d20c110c" + "x-ms-correlation-request-id": "ceb02e6b-8573-4251-bace-8501421d4fbb", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ceb02e6b-8573-4251-bace-8501421d4fbb", + "x-ms-routing-request-id": "WESTUS2:20210616T000637Z:ceb02e6b-8573-4251-bace-8501421d4fbb" }, "ResponseBody": [] }, @@ -4171,7 +4311,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7bf9adbc9b1279a308d5b3900dbccf0d", "x-ms-return-client-request-id": "true" }, @@ -4180,17 +4320,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "88c1d3dd-2bf9-4cf9-a882-29e176aaa05d", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "88c1d3dd-2bf9-4cf9-a882-29e176aaa05d", - "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:88c1d3dd-2bf9-4cf9-a882-29e176aaa05d" + "x-ms-correlation-request-id": "2b60625a-b1ec-4663-8609-3c9ccd009eae", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "2b60625a-b1ec-4663-8609-3c9ccd009eae", + "x-ms-routing-request-id": "WESTUS2:20210616T000637Z:2b60625a-b1ec-4663-8609-3c9ccd009eae" }, "ResponseBody": [] }, @@ -4199,7 +4339,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15ac70f89a26ea4117c86f418bf52c6e", "x-ms-return-client-request-id": "true" }, @@ -4208,17 +4348,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:35 GMT", + "Date": "Wed, 16 Jun 2021 00:06:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6d651bea-5152-4b2d-a18c-c18fc719dc15", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "6d651bea-5152-4b2d-a18c-c18fc719dc15", - "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:6d651bea-5152-4b2d-a18c-c18fc719dc15" + "x-ms-correlation-request-id": "4f50b02e-8af9-4552-9372-3eb4d4486647", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "4f50b02e-8af9-4552-9372-3eb4d4486647", + "x-ms-routing-request-id": "WESTUS2:20210616T000638Z:4f50b02e-8af9-4552-9372-3eb4d4486647" }, "ResponseBody": [] }, @@ -4227,7 +4367,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ab605fc4c266fc3ee2c8e968e54f707", "x-ms-return-client-request-id": "true" }, @@ -4236,17 +4376,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:36 GMT", + "Date": "Wed, 16 Jun 2021 00:06:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bbd8aa53-4442-4aa4-9e2f-aa507501dae1", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "bbd8aa53-4442-4aa4-9e2f-aa507501dae1", - "x-ms-routing-request-id": "WESTUS2:20210519T190137Z:bbd8aa53-4442-4aa4-9e2f-aa507501dae1" + "x-ms-correlation-request-id": "f4d9a14f-f621-4d2b-a05c-30254e7106f2", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "f4d9a14f-f621-4d2b-a05c-30254e7106f2", + "x-ms-routing-request-id": "WESTUS2:20210616T000639Z:f4d9a14f-f621-4d2b-a05c-30254e7106f2" }, "ResponseBody": [] }, @@ -4255,7 +4395,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5bf1f836960e222f6c0f644a2b61ee12", "x-ms-return-client-request-id": "true" }, @@ -4264,17 +4404,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:37 GMT", + "Date": "Wed, 16 Jun 2021 00:06:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e173dd1f-7db4-4168-aa34-bceec3bc898a", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "e173dd1f-7db4-4168-aa34-bceec3bc898a", - "x-ms-routing-request-id": "WESTUS2:20210519T190138Z:e173dd1f-7db4-4168-aa34-bceec3bc898a" + "x-ms-correlation-request-id": "258c7217-8f6a-4396-996f-ee236d78234a", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "258c7217-8f6a-4396-996f-ee236d78234a", + "x-ms-routing-request-id": "WESTUS2:20210616T000640Z:258c7217-8f6a-4396-996f-ee236d78234a" }, "ResponseBody": [] }, @@ -4283,7 +4423,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "079445a86405abe7ad3c27fa0caa5bc2", "x-ms-return-client-request-id": "true" }, @@ -4292,17 +4432,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:38 GMT", + "Date": "Wed, 16 Jun 2021 00:06:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "98df7429-732c-4f92-aa71-059b49bbc4ba", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "98df7429-732c-4f92-aa71-059b49bbc4ba", - "x-ms-routing-request-id": "WESTUS2:20210519T190139Z:98df7429-732c-4f92-aa71-059b49bbc4ba" + "x-ms-correlation-request-id": "4157f31c-f979-49f6-aa12-b0248b8c4e1e", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "4157f31c-f979-49f6-aa12-b0248b8c4e1e", + "x-ms-routing-request-id": "WESTUS2:20210616T000641Z:4157f31c-f979-49f6-aa12-b0248b8c4e1e" }, "ResponseBody": [] }, @@ -4311,7 +4451,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "920b68d0d0046560d694fe16e878448c", "x-ms-return-client-request-id": "true" }, @@ -4320,17 +4460,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:39 GMT", + "Date": "Wed, 16 Jun 2021 00:06:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d0df4325-37b9-4009-8413-5fe537e5985a", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "d0df4325-37b9-4009-8413-5fe537e5985a", - "x-ms-routing-request-id": "WESTUS2:20210519T190140Z:d0df4325-37b9-4009-8413-5fe537e5985a" + "x-ms-correlation-request-id": "7b27e355-08e3-4c79-b054-339991e4f34d", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "7b27e355-08e3-4c79-b054-339991e4f34d", + "x-ms-routing-request-id": "WESTUS2:20210616T000642Z:7b27e355-08e3-4c79-b054-339991e4f34d" }, "ResponseBody": [] }, @@ -4339,7 +4479,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "49ee7b3df0c0d2021145add16f3415c1", "x-ms-return-client-request-id": "true" }, @@ -4348,17 +4488,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:40 GMT", + "Date": "Wed, 16 Jun 2021 00:06:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "70e63596-0635-4343-895d-4fdc4b5afb71", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "70e63596-0635-4343-895d-4fdc4b5afb71", - "x-ms-routing-request-id": "WESTUS2:20210519T190141Z:70e63596-0635-4343-895d-4fdc4b5afb71" + "x-ms-correlation-request-id": "9120301b-2a47-4b65-ac70-851d7cbbf30a", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "9120301b-2a47-4b65-ac70-851d7cbbf30a", + "x-ms-routing-request-id": "WESTUS2:20210616T000643Z:9120301b-2a47-4b65-ac70-851d7cbbf30a" }, "ResponseBody": [] }, @@ -4367,7 +4507,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c379a1b45b56d70ee52e317065d0c334", "x-ms-return-client-request-id": "true" }, @@ -4376,17 +4516,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:42 GMT", + "Date": "Wed, 16 Jun 2021 00:06:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "856d5294-ee26-46a2-bc88-41b6bd274789", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "856d5294-ee26-46a2-bc88-41b6bd274789", - "x-ms-routing-request-id": "WESTUS2:20210519T190142Z:856d5294-ee26-46a2-bc88-41b6bd274789" + "x-ms-correlation-request-id": "8ce84a51-1e5e-4c65-8d08-a5a4299d70aa", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "8ce84a51-1e5e-4c65-8d08-a5a4299d70aa", + "x-ms-routing-request-id": "WESTUS2:20210616T000644Z:8ce84a51-1e5e-4c65-8d08-a5a4299d70aa" }, "ResponseBody": [] }, @@ -4395,7 +4535,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90bc9af811bce001653980bf238ef6a1", "x-ms-return-client-request-id": "true" }, @@ -4404,17 +4544,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:43 GMT", + "Date": "Wed, 16 Jun 2021 00:06:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "878d1a35-ed57-42e3-8bf1-5333837bf075", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "878d1a35-ed57-42e3-8bf1-5333837bf075", - "x-ms-routing-request-id": "WESTUS2:20210519T190143Z:878d1a35-ed57-42e3-8bf1-5333837bf075" + "x-ms-correlation-request-id": "1efef198-64da-45f5-9688-be0baed68b90", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "1efef198-64da-45f5-9688-be0baed68b90", + "x-ms-routing-request-id": "WESTUS2:20210616T000645Z:1efef198-64da-45f5-9688-be0baed68b90" }, "ResponseBody": [] }, @@ -4423,7 +4563,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "46623d7f80ffe1356d166491be926c41", "x-ms-return-client-request-id": "true" }, @@ -4432,17 +4572,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:44 GMT", + "Date": "Wed, 16 Jun 2021 00:06:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9b338d11-8de1-4aca-a044-56f73e287552", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "9b338d11-8de1-4aca-a044-56f73e287552", - "x-ms-routing-request-id": "WESTUS2:20210519T190144Z:9b338d11-8de1-4aca-a044-56f73e287552" + "x-ms-correlation-request-id": "6c29a6fa-7afe-4d01-a8c0-c17e40030399", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "6c29a6fa-7afe-4d01-a8c0-c17e40030399", + "x-ms-routing-request-id": "WESTUS2:20210616T000646Z:6c29a6fa-7afe-4d01-a8c0-c17e40030399" }, "ResponseBody": [] }, @@ -4451,7 +4591,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d4d879828577a2049f995d1ddb4fb456", "x-ms-return-client-request-id": "true" }, @@ -4460,17 +4600,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:45 GMT", + "Date": "Wed, 16 Jun 2021 00:06:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "34b9a5e8-b07c-42ad-82fd-0dd4507a0551", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "34b9a5e8-b07c-42ad-82fd-0dd4507a0551", - "x-ms-routing-request-id": "WESTUS2:20210519T190145Z:34b9a5e8-b07c-42ad-82fd-0dd4507a0551" + "x-ms-correlation-request-id": "67644255-a05a-4242-a221-08856339b059", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "67644255-a05a-4242-a221-08856339b059", + "x-ms-routing-request-id": "WESTUS2:20210616T000647Z:67644255-a05a-4242-a221-08856339b059" }, "ResponseBody": [] }, @@ -4479,7 +4619,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "27f18f377c6d783564da22a6ad7021d3", "x-ms-return-client-request-id": "true" }, @@ -4488,17 +4628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:46 GMT", + "Date": "Wed, 16 Jun 2021 00:06:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ee2d05ec-0cd0-4a81-90e9-d6a384aa6127", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "ee2d05ec-0cd0-4a81-90e9-d6a384aa6127", - "x-ms-routing-request-id": "WESTUS2:20210519T190146Z:ee2d05ec-0cd0-4a81-90e9-d6a384aa6127" + "x-ms-correlation-request-id": "15532829-522c-4c50-9af2-11d28954cc1c", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "15532829-522c-4c50-9af2-11d28954cc1c", + "x-ms-routing-request-id": "WESTUS2:20210616T000648Z:15532829-522c-4c50-9af2-11d28954cc1c" }, "ResponseBody": [] }, @@ -4507,7 +4647,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "aa3c3fcc22b5f92939c0a6652218061e", "x-ms-return-client-request-id": "true" }, @@ -4516,17 +4656,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:47 GMT", + "Date": "Wed, 16 Jun 2021 00:06:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "35e34b46-d293-42e3-9771-d1f06da31809", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "35e34b46-d293-42e3-9771-d1f06da31809", - "x-ms-routing-request-id": "WESTUS2:20210519T190147Z:35e34b46-d293-42e3-9771-d1f06da31809" + "x-ms-correlation-request-id": "15ce0d6a-d31a-46cf-a4db-c643e911be9f", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "15ce0d6a-d31a-46cf-a4db-c643e911be9f", + "x-ms-routing-request-id": "WESTUS2:20210616T000649Z:15ce0d6a-d31a-46cf-a4db-c643e911be9f" }, "ResponseBody": [] }, @@ -4535,7 +4675,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2e5a0d6144a005d443606f9d635df42f", "x-ms-return-client-request-id": "true" }, @@ -4544,17 +4684,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:48 GMT", + "Date": "Wed, 16 Jun 2021 00:06:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "11aeab28-93f5-4844-bebf-6ae8f6fbf3f3", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "11aeab28-93f5-4844-bebf-6ae8f6fbf3f3", - "x-ms-routing-request-id": "WESTUS2:20210519T190149Z:11aeab28-93f5-4844-bebf-6ae8f6fbf3f3" + "x-ms-correlation-request-id": "cbdb7b68-11c8-45d6-81dc-024d4a163bc4", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "cbdb7b68-11c8-45d6-81dc-024d4a163bc4", + "x-ms-routing-request-id": "WESTUS2:20210616T000650Z:cbdb7b68-11c8-45d6-81dc-024d4a163bc4" }, "ResponseBody": [] }, @@ -4563,7 +4703,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9c518a770a1215a066f7eeacd5d0554c", "x-ms-return-client-request-id": "true" }, @@ -4572,17 +4712,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:49 GMT", + "Date": "Wed, 16 Jun 2021 00:06:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "889b1e5e-5c98-42d4-899e-90984fcf782e", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "889b1e5e-5c98-42d4-899e-90984fcf782e", - "x-ms-routing-request-id": "WESTUS2:20210519T190150Z:889b1e5e-5c98-42d4-899e-90984fcf782e" + "x-ms-correlation-request-id": "53b73056-a1c6-4ef5-b311-036e296e43fd", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "53b73056-a1c6-4ef5-b311-036e296e43fd", + "x-ms-routing-request-id": "WESTUS2:20210616T000651Z:53b73056-a1c6-4ef5-b311-036e296e43fd" }, "ResponseBody": [] }, @@ -4591,7 +4731,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a04404d4f21687336b376655b28c96db", "x-ms-return-client-request-id": "true" }, @@ -4600,17 +4740,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:50 GMT", + "Date": "Wed, 16 Jun 2021 00:06:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c82bdf82-81c1-437a-aa2f-c1796b2cd5bc", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "c82bdf82-81c1-437a-aa2f-c1796b2cd5bc", - "x-ms-routing-request-id": "WESTUS2:20210519T190151Z:c82bdf82-81c1-437a-aa2f-c1796b2cd5bc" + "x-ms-correlation-request-id": "bbca02ae-f089-47e8-a49b-3c27e5a72f52", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "bbca02ae-f089-47e8-a49b-3c27e5a72f52", + "x-ms-routing-request-id": "WESTUS2:20210616T000652Z:bbca02ae-f089-47e8-a49b-3c27e5a72f52" }, "ResponseBody": [] }, @@ -4619,7 +4759,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98ed76cc6ac7570c6c44c8a855273072", "x-ms-return-client-request-id": "true" }, @@ -4628,17 +4768,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:51 GMT", + "Date": "Wed, 16 Jun 2021 00:06:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0b7e56af-0efd-4e29-b493-baf0a15250c4", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "0b7e56af-0efd-4e29-b493-baf0a15250c4", - "x-ms-routing-request-id": "WESTUS2:20210519T190152Z:0b7e56af-0efd-4e29-b493-baf0a15250c4" + "x-ms-correlation-request-id": "87519904-b13c-47f5-91a4-d82816e74223", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "87519904-b13c-47f5-91a4-d82816e74223", + "x-ms-routing-request-id": "WESTUS2:20210616T000653Z:87519904-b13c-47f5-91a4-d82816e74223" }, "ResponseBody": [] }, @@ -4647,7 +4787,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ec8230b5419841957c931dba34b63d9", "x-ms-return-client-request-id": "true" }, @@ -4656,17 +4796,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "064888be-68e5-4920-b62f-57733b40cccf", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "064888be-68e5-4920-b62f-57733b40cccf", - "x-ms-routing-request-id": "WESTUS2:20210519T190153Z:064888be-68e5-4920-b62f-57733b40cccf" + "x-ms-correlation-request-id": "17f8f5a9-62f0-4fdb-b4dc-54892eb8f773", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "17f8f5a9-62f0-4fdb-b4dc-54892eb8f773", + "x-ms-routing-request-id": "WESTUS2:20210616T000654Z:17f8f5a9-62f0-4fdb-b4dc-54892eb8f773" }, "ResponseBody": [] }, @@ -4675,7 +4815,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ee01361bce26a85f8ed33d12a8a3143", "x-ms-return-client-request-id": "true" }, @@ -4684,17 +4824,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:54 GMT", + "Date": "Wed, 16 Jun 2021 00:06:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a108724e-d5ec-4e67-84c0-3a8485c249f6", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "a108724e-d5ec-4e67-84c0-3a8485c249f6", - "x-ms-routing-request-id": "WESTUS2:20210519T190154Z:a108724e-d5ec-4e67-84c0-3a8485c249f6" + "x-ms-correlation-request-id": "62023d10-0cdf-4c3a-8f1e-5663082d7060", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "62023d10-0cdf-4c3a-8f1e-5663082d7060", + "x-ms-routing-request-id": "WESTUS2:20210616T000656Z:62023d10-0cdf-4c3a-8f1e-5663082d7060" }, "ResponseBody": [] }, @@ -4703,7 +4843,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8e49f30637c477c25d6841fd3830b321", "x-ms-return-client-request-id": "true" }, @@ -4712,17 +4852,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:55 GMT", + "Date": "Wed, 16 Jun 2021 00:06:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1c33972b-42f5-4000-9144-e85a73c7f46b", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "1c33972b-42f5-4000-9144-e85a73c7f46b", - "x-ms-routing-request-id": "WESTUS2:20210519T190155Z:1c33972b-42f5-4000-9144-e85a73c7f46b" + "x-ms-correlation-request-id": "1b60f457-1453-4c56-859e-6a07ee67759c", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "1b60f457-1453-4c56-859e-6a07ee67759c", + "x-ms-routing-request-id": "WESTUS2:20210616T000657Z:1b60f457-1453-4c56-859e-6a07ee67759c" }, "ResponseBody": [] }, @@ -4731,7 +4871,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4247efe0d1464e909d5e662c20485acc", "x-ms-return-client-request-id": "true" }, @@ -4740,17 +4880,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:56 GMT", + "Date": "Wed, 16 Jun 2021 00:06:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ff846d18-4ecd-40d6-af01-f10582611894", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "ff846d18-4ecd-40d6-af01-f10582611894", - "x-ms-routing-request-id": "WESTUS2:20210519T190156Z:ff846d18-4ecd-40d6-af01-f10582611894" + "x-ms-correlation-request-id": "0013f891-66b3-4dc1-a9e6-2c8ca237edb0", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "0013f891-66b3-4dc1-a9e6-2c8ca237edb0", + "x-ms-routing-request-id": "WESTUS2:20210616T000658Z:0013f891-66b3-4dc1-a9e6-2c8ca237edb0" }, "ResponseBody": [] }, @@ -4759,7 +4899,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "afd4ed97d4012a15516801797a8731c7", "x-ms-return-client-request-id": "true" }, @@ -4768,17 +4908,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:57 GMT", + "Date": "Wed, 16 Jun 2021 00:06:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "badf36b8-0255-4b20-86f3-08826a806f29", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "badf36b8-0255-4b20-86f3-08826a806f29", - "x-ms-routing-request-id": "WESTUS2:20210519T190157Z:badf36b8-0255-4b20-86f3-08826a806f29" + "x-ms-correlation-request-id": "089e983a-6b92-49ab-a262-b7315ba5c6ab", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "089e983a-6b92-49ab-a262-b7315ba5c6ab", + "x-ms-routing-request-id": "WESTUS2:20210616T000659Z:089e983a-6b92-49ab-a262-b7315ba5c6ab" }, "ResponseBody": [] }, @@ -4787,7 +4927,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3bf01239ef4335fd63fbf066d0955715", "x-ms-return-client-request-id": "true" }, @@ -4796,17 +4936,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:58 GMT", + "Date": "Wed, 16 Jun 2021 00:07:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a49ccd44-d0f4-496a-98db-99f2d8d67f68", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "a49ccd44-d0f4-496a-98db-99f2d8d67f68", - "x-ms-routing-request-id": "WESTUS2:20210519T190158Z:a49ccd44-d0f4-496a-98db-99f2d8d67f68" + "x-ms-correlation-request-id": "13f181ec-a5a0-4a12-9d88-f3a6e9255779", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "13f181ec-a5a0-4a12-9d88-f3a6e9255779", + "x-ms-routing-request-id": "WESTUS2:20210616T000700Z:13f181ec-a5a0-4a12-9d88-f3a6e9255779" }, "ResponseBody": [] }, @@ -4815,7 +4955,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b66750e035c0c1fd91cf1ddd016d416", "x-ms-return-client-request-id": "true" }, @@ -4824,17 +4964,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:59 GMT", + "Date": "Wed, 16 Jun 2021 00:07:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "12646622-68a3-40b9-838a-e922c5ee1ac9", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "12646622-68a3-40b9-838a-e922c5ee1ac9", - "x-ms-routing-request-id": "WESTUS2:20210519T190159Z:12646622-68a3-40b9-838a-e922c5ee1ac9" + "x-ms-correlation-request-id": "cf4d5980-c46e-4860-bac3-000914a7ad61", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "cf4d5980-c46e-4860-bac3-000914a7ad61", + "x-ms-routing-request-id": "WESTUS2:20210616T000701Z:cf4d5980-c46e-4860-bac3-000914a7ad61" }, "ResponseBody": [] }, @@ -4843,7 +4983,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0ef29f2c1f57a789f09e4c06e3af59bb", "x-ms-return-client-request-id": "true" }, @@ -4852,17 +4992,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:00 GMT", + "Date": "Wed, 16 Jun 2021 00:07:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "676f7bb5-d82b-4aa7-97d6-3936056fadf1", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "676f7bb5-d82b-4aa7-97d6-3936056fadf1", - "x-ms-routing-request-id": "WESTUS2:20210519T190200Z:676f7bb5-d82b-4aa7-97d6-3936056fadf1" + "x-ms-correlation-request-id": "af79663b-bae3-46ce-ae9d-7cbeca0f34ca", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "af79663b-bae3-46ce-ae9d-7cbeca0f34ca", + "x-ms-routing-request-id": "WESTUS2:20210616T000702Z:af79663b-bae3-46ce-ae9d-7cbeca0f34ca" }, "ResponseBody": [] }, @@ -4871,7 +5011,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "056bec11e521356af3e46126fe1f654c", "x-ms-return-client-request-id": "true" }, @@ -4880,17 +5020,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:01 GMT", + "Date": "Wed, 16 Jun 2021 00:07:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b1f8491e-1244-40e6-993f-e1f273b03ec8", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "b1f8491e-1244-40e6-993f-e1f273b03ec8", - "x-ms-routing-request-id": "WESTUS2:20210519T190201Z:b1f8491e-1244-40e6-993f-e1f273b03ec8" + "x-ms-correlation-request-id": "1a3e8c46-1855-4ecb-a3f0-88371b7d7c63", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "1a3e8c46-1855-4ecb-a3f0-88371b7d7c63", + "x-ms-routing-request-id": "WESTUS2:20210616T000703Z:1a3e8c46-1855-4ecb-a3f0-88371b7d7c63" }, "ResponseBody": [] }, @@ -4899,7 +5039,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3039da2749a2eebdebbe5bbdb718282a", "x-ms-return-client-request-id": "true" }, @@ -4908,17 +5048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:02 GMT", + "Date": "Wed, 16 Jun 2021 00:07:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bbac1984-9b2b-4285-803c-41d7a0cdc290", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "bbac1984-9b2b-4285-803c-41d7a0cdc290", - "x-ms-routing-request-id": "WESTUS2:20210519T190202Z:bbac1984-9b2b-4285-803c-41d7a0cdc290" + "x-ms-correlation-request-id": "42f6d318-f6d7-46e4-ac28-590cac6d3628", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "42f6d318-f6d7-46e4-ac28-590cac6d3628", + "x-ms-routing-request-id": "WESTUS2:20210616T000704Z:42f6d318-f6d7-46e4-ac28-590cac6d3628" }, "ResponseBody": [] }, @@ -4927,7 +5067,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e3cc35c3ceab46f534bd1a72be63a9d0", "x-ms-return-client-request-id": "true" }, @@ -4936,17 +5076,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:03 GMT", + "Date": "Wed, 16 Jun 2021 00:07:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "90f8ca26-bac8-462a-a45e-629f645f5a29", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "90f8ca26-bac8-462a-a45e-629f645f5a29", - "x-ms-routing-request-id": "WESTUS2:20210519T190203Z:90f8ca26-bac8-462a-a45e-629f645f5a29" + "x-ms-correlation-request-id": "2afdd791-805d-4a49-93c9-573c08b4d173", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "2afdd791-805d-4a49-93c9-573c08b4d173", + "x-ms-routing-request-id": "WESTUS2:20210616T000705Z:2afdd791-805d-4a49-93c9-573c08b4d173" }, "ResponseBody": [] }, @@ -4955,7 +5095,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "08dfff392875c8182e7c19628aad7dda", "x-ms-return-client-request-id": "true" }, @@ -4964,17 +5104,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:04 GMT", + "Date": "Wed, 16 Jun 2021 00:07:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "170f2536-1866-475b-935b-930c8884b735", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "170f2536-1866-475b-935b-930c8884b735", - "x-ms-routing-request-id": "WESTUS2:20210519T190204Z:170f2536-1866-475b-935b-930c8884b735" + "x-ms-correlation-request-id": "fd7b0343-cf0d-4826-a62b-3e833169c208", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "fd7b0343-cf0d-4826-a62b-3e833169c208", + "x-ms-routing-request-id": "WESTUS2:20210616T000706Z:fd7b0343-cf0d-4826-a62b-3e833169c208" }, "ResponseBody": [] }, @@ -4983,7 +5123,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c86336bb815258a1e5f2fbe52e4a3088", "x-ms-return-client-request-id": "true" }, @@ -4992,17 +5132,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:05 GMT", + "Date": "Wed, 16 Jun 2021 00:07:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5df8e721-a5f2-4731-b1ad-18e4da705e86", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "5df8e721-a5f2-4731-b1ad-18e4da705e86", - "x-ms-routing-request-id": "WESTUS2:20210519T190205Z:5df8e721-a5f2-4731-b1ad-18e4da705e86" + "x-ms-correlation-request-id": "4f5f6e16-1519-44f9-9555-616538e4e8f3", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "4f5f6e16-1519-44f9-9555-616538e4e8f3", + "x-ms-routing-request-id": "WESTUS2:20210616T000707Z:4f5f6e16-1519-44f9-9555-616538e4e8f3" }, "ResponseBody": [] }, @@ -5011,7 +5151,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b8838a151f389ab41c04b42eb492bb87", "x-ms-return-client-request-id": "true" }, @@ -5020,17 +5160,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:06 GMT", + "Date": "Wed, 16 Jun 2021 00:07:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3e36941b-7257-41f6-b880-42ad495b0907", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "3e36941b-7257-41f6-b880-42ad495b0907", - "x-ms-routing-request-id": "WESTUS2:20210519T190206Z:3e36941b-7257-41f6-b880-42ad495b0907" + "x-ms-correlation-request-id": "7710f35d-5eeb-4c63-9324-e5577ecd3356", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "7710f35d-5eeb-4c63-9324-e5577ecd3356", + "x-ms-routing-request-id": "WESTUS2:20210616T000708Z:7710f35d-5eeb-4c63-9324-e5577ecd3356" }, "ResponseBody": [] }, @@ -5039,7 +5179,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "87b64040e0ffb77e5e8723832d339ae3", "x-ms-return-client-request-id": "true" }, @@ -5048,17 +5188,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:07 GMT", + "Date": "Wed, 16 Jun 2021 00:07:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9a563087-2c84-47d2-964a-8cc6c745be3b", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "9a563087-2c84-47d2-964a-8cc6c745be3b", - "x-ms-routing-request-id": "WESTUS2:20210519T190207Z:9a563087-2c84-47d2-964a-8cc6c745be3b" + "x-ms-correlation-request-id": "9b915d9b-0530-4698-957b-864f3c4e8617", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "9b915d9b-0530-4698-957b-864f3c4e8617", + "x-ms-routing-request-id": "WESTUS2:20210616T000709Z:9b915d9b-0530-4698-957b-864f3c4e8617" }, "ResponseBody": [] }, @@ -5067,7 +5207,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "004d914cc5299ca182c9ac4ecc72a352", "x-ms-return-client-request-id": "true" }, @@ -5076,17 +5216,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:08 GMT", + "Date": "Wed, 16 Jun 2021 00:07:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "10a53d1f-b72f-4d40-b520-96a17daf61b9", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "10a53d1f-b72f-4d40-b520-96a17daf61b9", - "x-ms-routing-request-id": "WESTUS2:20210519T190208Z:10a53d1f-b72f-4d40-b520-96a17daf61b9" + "x-ms-correlation-request-id": "38d58758-0187-4f9f-b8d5-fabdc43308f4", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "38d58758-0187-4f9f-b8d5-fabdc43308f4", + "x-ms-routing-request-id": "WESTUS2:20210616T000710Z:38d58758-0187-4f9f-b8d5-fabdc43308f4" }, "ResponseBody": [] }, @@ -5095,7 +5235,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eda57436a89434880ccb5ab1fc316de9", "x-ms-return-client-request-id": "true" }, @@ -5104,17 +5244,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:09 GMT", + "Date": "Wed, 16 Jun 2021 00:07:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "37e034c8-2da8-4d9e-b600-06496c773d23", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "37e034c8-2da8-4d9e-b600-06496c773d23", - "x-ms-routing-request-id": "WESTUS2:20210519T190209Z:37e034c8-2da8-4d9e-b600-06496c773d23" + "x-ms-correlation-request-id": "3c2178d9-eb71-457c-83b0-06b86707183f", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "3c2178d9-eb71-457c-83b0-06b86707183f", + "x-ms-routing-request-id": "WESTUS2:20210616T000711Z:3c2178d9-eb71-457c-83b0-06b86707183f" }, "ResponseBody": [] }, @@ -5123,7 +5263,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "23e2d16abb457a5e9e1a0536342febeb", "x-ms-return-client-request-id": "true" }, @@ -5132,17 +5272,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:10 GMT", + "Date": "Wed, 16 Jun 2021 00:07:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a59db560-e07d-4691-a37e-0a4cfe143fc7", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "a59db560-e07d-4691-a37e-0a4cfe143fc7", - "x-ms-routing-request-id": "WESTUS2:20210519T190210Z:a59db560-e07d-4691-a37e-0a4cfe143fc7" + "x-ms-correlation-request-id": "c3a673ed-f5e7-48f3-b304-f18333ac08e2", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "c3a673ed-f5e7-48f3-b304-f18333ac08e2", + "x-ms-routing-request-id": "WESTUS2:20210616T000712Z:c3a673ed-f5e7-48f3-b304-f18333ac08e2" }, "ResponseBody": [] }, @@ -5151,7 +5291,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b84cd0e3ac8ea34f0818f45d6befa051", "x-ms-return-client-request-id": "true" }, @@ -5160,17 +5300,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:11 GMT", + "Date": "Wed, 16 Jun 2021 00:07:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "293b9d83-d485-4eff-b8a0-7d71d8a1379d", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "293b9d83-d485-4eff-b8a0-7d71d8a1379d", - "x-ms-routing-request-id": "WESTUS2:20210519T190211Z:293b9d83-d485-4eff-b8a0-7d71d8a1379d" + "x-ms-correlation-request-id": "824654e6-917e-4b43-825a-c486a16c0888", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "824654e6-917e-4b43-825a-c486a16c0888", + "x-ms-routing-request-id": "WESTUS2:20210616T000713Z:824654e6-917e-4b43-825a-c486a16c0888" }, "ResponseBody": [] }, @@ -5179,7 +5319,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fbe4c25c80907b0c162a4f79a35200dc", "x-ms-return-client-request-id": "true" }, @@ -5188,17 +5328,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:12 GMT", + "Date": "Wed, 16 Jun 2021 00:07:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "acbe2fe3-a2b8-474c-a370-2730d0d5fd92", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "acbe2fe3-a2b8-474c-a370-2730d0d5fd92", - "x-ms-routing-request-id": "WESTUS2:20210519T190212Z:acbe2fe3-a2b8-474c-a370-2730d0d5fd92" + "x-ms-correlation-request-id": "4225f1df-9ab3-411c-9e30-6afab2c5bf82", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "4225f1df-9ab3-411c-9e30-6afab2c5bf82", + "x-ms-routing-request-id": "WESTUS2:20210616T000714Z:4225f1df-9ab3-411c-9e30-6afab2c5bf82" }, "ResponseBody": [] }, @@ -5207,7 +5347,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2bce6ee0b4e4bd5b813e1a2dc6000faf", "x-ms-return-client-request-id": "true" }, @@ -5216,17 +5356,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:13 GMT", + "Date": "Wed, 16 Jun 2021 00:07:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f020db91-d933-4588-8dbf-fa81ef574dbb", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "f020db91-d933-4588-8dbf-fa81ef574dbb", - "x-ms-routing-request-id": "WESTUS2:20210519T190213Z:f020db91-d933-4588-8dbf-fa81ef574dbb" + "x-ms-correlation-request-id": "ea91f848-0949-4043-852a-d3173f62fc94", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "ea91f848-0949-4043-852a-d3173f62fc94", + "x-ms-routing-request-id": "WESTUS2:20210616T000715Z:ea91f848-0949-4043-852a-d3173f62fc94" }, "ResponseBody": [] }, @@ -5235,7 +5375,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71dab47aef4b625ac3d1a2635dd600b6", "x-ms-return-client-request-id": "true" }, @@ -5244,17 +5384,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:14 GMT", + "Date": "Wed, 16 Jun 2021 00:07:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b25556c7-32b4-4548-ad90-b74eaf01472f", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "b25556c7-32b4-4548-ad90-b74eaf01472f", - "x-ms-routing-request-id": "WESTUS2:20210519T190214Z:b25556c7-32b4-4548-ad90-b74eaf01472f" + "x-ms-correlation-request-id": "8f098ef2-6f24-4c99-9f5f-ee8638fd70bd", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "8f098ef2-6f24-4c99-9f5f-ee8638fd70bd", + "x-ms-routing-request-id": "WESTUS2:20210616T000716Z:8f098ef2-6f24-4c99-9f5f-ee8638fd70bd" }, "ResponseBody": [] }, @@ -5263,7 +5403,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fc7c18187420a76c67267a5266dfb415", "x-ms-return-client-request-id": "true" }, @@ -5272,17 +5412,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:15 GMT", + "Date": "Wed, 16 Jun 2021 00:07:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "32a6cf17-a876-4868-b2f8-f96ed7450891", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "32a6cf17-a876-4868-b2f8-f96ed7450891", - "x-ms-routing-request-id": "WESTUS2:20210519T190215Z:32a6cf17-a876-4868-b2f8-f96ed7450891" + "x-ms-correlation-request-id": "2edb16e7-983c-4ec7-9e4a-13636b1875a5", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "2edb16e7-983c-4ec7-9e4a-13636b1875a5", + "x-ms-routing-request-id": "WESTUS2:20210616T000717Z:2edb16e7-983c-4ec7-9e4a-13636b1875a5" }, "ResponseBody": [] }, @@ -5291,7 +5431,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "efffa01b8e77f191146c671311f760ab", "x-ms-return-client-request-id": "true" }, @@ -5300,17 +5440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:16 GMT", + "Date": "Wed, 16 Jun 2021 00:07:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "41de0070-a5d9-464f-9e89-effebce89097", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "41de0070-a5d9-464f-9e89-effebce89097", - "x-ms-routing-request-id": "WESTUS2:20210519T190216Z:41de0070-a5d9-464f-9e89-effebce89097" + "x-ms-correlation-request-id": "49fda7af-034c-4d71-bced-3c06e3d2117c", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "49fda7af-034c-4d71-bced-3c06e3d2117c", + "x-ms-routing-request-id": "WESTUS2:20210616T000718Z:49fda7af-034c-4d71-bced-3c06e3d2117c" }, "ResponseBody": [] }, @@ -5319,7 +5459,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae15643e1283058e48320a247508fce4", "x-ms-return-client-request-id": "true" }, @@ -5328,17 +5468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:17 GMT", + "Date": "Wed, 16 Jun 2021 00:07:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c779c247-20fe-4204-b4c9-9562ebe7a84a", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "c779c247-20fe-4204-b4c9-9562ebe7a84a", - "x-ms-routing-request-id": "WESTUS2:20210519T190217Z:c779c247-20fe-4204-b4c9-9562ebe7a84a" + "x-ms-correlation-request-id": "2b208573-d89f-4be0-951a-8ac0aec46960", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "2b208573-d89f-4be0-951a-8ac0aec46960", + "x-ms-routing-request-id": "WESTUS2:20210616T000719Z:2b208573-d89f-4be0-951a-8ac0aec46960" }, "ResponseBody": [] }, @@ -5347,7 +5487,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bc478c1c10d6893f868be8b40d58966f", "x-ms-return-client-request-id": "true" }, @@ -5356,17 +5496,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:18 GMT", + "Date": "Wed, 16 Jun 2021 00:07:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "af6de1e7-3817-4b74-a168-65913034c4f3", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "af6de1e7-3817-4b74-a168-65913034c4f3", - "x-ms-routing-request-id": "WESTUS2:20210519T190219Z:af6de1e7-3817-4b74-a168-65913034c4f3" + "x-ms-correlation-request-id": "4287066a-5614-4555-be7b-c4f32232cce4", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "4287066a-5614-4555-be7b-c4f32232cce4", + "x-ms-routing-request-id": "WESTUS2:20210616T000720Z:4287066a-5614-4555-be7b-c4f32232cce4" }, "ResponseBody": [] }, @@ -5375,7 +5515,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0213cfc505ca089212f9a744836c7c0c", "x-ms-return-client-request-id": "true" }, @@ -5384,17 +5524,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:19 GMT", + "Date": "Wed, 16 Jun 2021 00:07:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4f179f69-521a-482e-a1c6-06b08788c56b", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "4f179f69-521a-482e-a1c6-06b08788c56b", - "x-ms-routing-request-id": "WESTUS2:20210519T190220Z:4f179f69-521a-482e-a1c6-06b08788c56b" + "x-ms-correlation-request-id": "8f9bcf3b-a8cb-4f0e-8e27-6f3520428ab3", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "8f9bcf3b-a8cb-4f0e-8e27-6f3520428ab3", + "x-ms-routing-request-id": "WESTUS2:20210616T000721Z:8f9bcf3b-a8cb-4f0e-8e27-6f3520428ab3" }, "ResponseBody": [] }, @@ -5403,7 +5543,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "84f78370a3af2dd4258b27f72ad9f8ef", "x-ms-return-client-request-id": "true" }, @@ -5412,17 +5552,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:20 GMT", + "Date": "Wed, 16 Jun 2021 00:07:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ac8bf05f-2778-43d8-baa0-ae4f16378fed", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "ac8bf05f-2778-43d8-baa0-ae4f16378fed", - "x-ms-routing-request-id": "WESTUS2:20210519T190221Z:ac8bf05f-2778-43d8-baa0-ae4f16378fed" + "x-ms-correlation-request-id": "bb31a988-b654-48df-9c35-85167f75a541", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "bb31a988-b654-48df-9c35-85167f75a541", + "x-ms-routing-request-id": "WESTUS2:20210616T000722Z:bb31a988-b654-48df-9c35-85167f75a541" }, "ResponseBody": [] }, @@ -5431,7 +5571,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a55e9b9cfaf41719fa3faadc69fa061a", "x-ms-return-client-request-id": "true" }, @@ -5440,17 +5580,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:21 GMT", + "Date": "Wed, 16 Jun 2021 00:07:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cefacc26-3fb6-4a1f-86b9-91f7869d20ee", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "cefacc26-3fb6-4a1f-86b9-91f7869d20ee", - "x-ms-routing-request-id": "WESTUS2:20210519T190222Z:cefacc26-3fb6-4a1f-86b9-91f7869d20ee" + "x-ms-correlation-request-id": "46dc5b0a-f49b-4bff-8020-a16586c1267d", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "46dc5b0a-f49b-4bff-8020-a16586c1267d", + "x-ms-routing-request-id": "WESTUS2:20210616T000723Z:46dc5b0a-f49b-4bff-8020-a16586c1267d" }, "ResponseBody": [] }, @@ -5459,7 +5599,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8944db0f126121bffae6dd3fdd9ade38", "x-ms-return-client-request-id": "true" }, @@ -5468,17 +5608,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:22 GMT", + "Date": "Wed, 16 Jun 2021 00:07:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a0bb12e8-9e62-4935-bd57-2ae7a1478ef4", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-request-id": "a0bb12e8-9e62-4935-bd57-2ae7a1478ef4", - "x-ms-routing-request-id": "WESTUS2:20210519T190223Z:a0bb12e8-9e62-4935-bd57-2ae7a1478ef4" + "x-ms-correlation-request-id": "12631abb-9bdc-42de-bda0-68a1ebd80bdf", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "12631abb-9bdc-42de-bda0-68a1ebd80bdf", + "x-ms-routing-request-id": "WESTUS2:20210616T000724Z:12631abb-9bdc-42de-bda0-68a1ebd80bdf" }, "ResponseBody": [] }, @@ -5487,7 +5627,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8a8b701d60d761869e08970f8f8c32a", "x-ms-return-client-request-id": "true" }, @@ -5496,17 +5636,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:23 GMT", + "Date": "Wed, 16 Jun 2021 00:07:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "695bbb56-c2ed-4e94-88fc-df0c791f7e48", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-request-id": "695bbb56-c2ed-4e94-88fc-df0c791f7e48", - "x-ms-routing-request-id": "WESTUS2:20210519T190224Z:695bbb56-c2ed-4e94-88fc-df0c791f7e48" + "x-ms-correlation-request-id": "5b199a03-3123-471a-9b66-958cc5bf70e1", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "5b199a03-3123-471a-9b66-958cc5bf70e1", + "x-ms-routing-request-id": "WESTUS2:20210616T000725Z:5b199a03-3123-471a-9b66-958cc5bf70e1" }, "ResponseBody": [] }, @@ -5515,7 +5655,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ee80d856e95898edb3cab0d1dda3960", "x-ms-return-client-request-id": "true" }, @@ -5524,17 +5664,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:24 GMT", + "Date": "Wed, 16 Jun 2021 00:07:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a76b715a-6a21-4d26-9110-3d8e9b7b2d6f", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-request-id": "a76b715a-6a21-4d26-9110-3d8e9b7b2d6f", - "x-ms-routing-request-id": "WESTUS2:20210519T190225Z:a76b715a-6a21-4d26-9110-3d8e9b7b2d6f" + "x-ms-correlation-request-id": "e9b8bfa1-bb74-43e8-936e-a1b73bd4cb66", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "e9b8bfa1-bb74-43e8-936e-a1b73bd4cb66", + "x-ms-routing-request-id": "WESTUS2:20210616T000727Z:e9b8bfa1-bb74-43e8-936e-a1b73bd4cb66" }, "ResponseBody": [] }, @@ -5543,7 +5683,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b2da72601d51390cc3cd1f80884e2802", "x-ms-return-client-request-id": "true" }, @@ -5552,17 +5692,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:25 GMT", + "Date": "Wed, 16 Jun 2021 00:07:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7be8f30a-e6d2-4721-8908-f669ca79644e", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-request-id": "7be8f30a-e6d2-4721-8908-f669ca79644e", - "x-ms-routing-request-id": "WESTUS2:20210519T190226Z:7be8f30a-e6d2-4721-8908-f669ca79644e" + "x-ms-correlation-request-id": "fc71eb2c-9a80-486f-88cf-bbb355e07313", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "fc71eb2c-9a80-486f-88cf-bbb355e07313", + "x-ms-routing-request-id": "WESTUS2:20210616T000728Z:fc71eb2c-9a80-486f-88cf-bbb355e07313" }, "ResponseBody": [] }, @@ -5571,7 +5711,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d0bab2228fb193a2281e0dd02a0a598f", "x-ms-return-client-request-id": "true" }, @@ -5580,17 +5720,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:26 GMT", + "Date": "Wed, 16 Jun 2021 00:07:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab22afc1-3403-45f4-9c63-652b9e65f22a", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-request-id": "ab22afc1-3403-45f4-9c63-652b9e65f22a", - "x-ms-routing-request-id": "WESTUS2:20210519T190227Z:ab22afc1-3403-45f4-9c63-652b9e65f22a" + "x-ms-correlation-request-id": "8fa73266-6b2c-49f9-a31a-6cfae5356747", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "8fa73266-6b2c-49f9-a31a-6cfae5356747", + "x-ms-routing-request-id": "WESTUS2:20210616T000729Z:8fa73266-6b2c-49f9-a31a-6cfae5356747" }, "ResponseBody": [] }, @@ -5599,7 +5739,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "861029a6111d67d901af8bc74e0d018c", "x-ms-return-client-request-id": "true" }, @@ -5608,17 +5748,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:27 GMT", + "Date": "Wed, 16 Jun 2021 00:07:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bfcae9e7-7803-42fe-87a8-96ce88447655", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-request-id": "bfcae9e7-7803-42fe-87a8-96ce88447655", - "x-ms-routing-request-id": "WESTUS2:20210519T190228Z:bfcae9e7-7803-42fe-87a8-96ce88447655" + "x-ms-correlation-request-id": "50d3aed3-d359-4b4b-868b-159cd0c8c89b", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "50d3aed3-d359-4b4b-868b-159cd0c8c89b", + "x-ms-routing-request-id": "WESTUS2:20210616T000730Z:50d3aed3-d359-4b4b-868b-159cd0c8c89b" }, "ResponseBody": [] }, @@ -5627,7 +5767,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6aeaa914691fd1aecf478933103b0eb8", "x-ms-return-client-request-id": "true" }, @@ -5636,17 +5776,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:28 GMT", + "Date": "Wed, 16 Jun 2021 00:07:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3f7ef8f3-50d6-49cc-a887-0266c58c4dbe", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-request-id": "3f7ef8f3-50d6-49cc-a887-0266c58c4dbe", - "x-ms-routing-request-id": "WESTUS2:20210519T190229Z:3f7ef8f3-50d6-49cc-a887-0266c58c4dbe" + "x-ms-correlation-request-id": "c8219eef-d1b6-4663-b348-860a668c969c", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "c8219eef-d1b6-4663-b348-860a668c969c", + "x-ms-routing-request-id": "WESTUS2:20210616T000731Z:c8219eef-d1b6-4663-b348-860a668c969c" }, "ResponseBody": [] }, @@ -5655,7 +5795,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5fd98f74a23e10e4d952cf0204db441a", "x-ms-return-client-request-id": "true" }, @@ -5664,17 +5804,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:29 GMT", + "Date": "Wed, 16 Jun 2021 00:07:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "64ba9cd5-8828-4216-853f-199141f33833", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-request-id": "64ba9cd5-8828-4216-853f-199141f33833", - "x-ms-routing-request-id": "WESTUS2:20210519T190230Z:64ba9cd5-8828-4216-853f-199141f33833" + "x-ms-correlation-request-id": "b9366f96-acbf-44fe-931b-c80cc31303de", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "b9366f96-acbf-44fe-931b-c80cc31303de", + "x-ms-routing-request-id": "WESTUS2:20210616T000732Z:b9366f96-acbf-44fe-931b-c80cc31303de" }, "ResponseBody": [] }, @@ -5683,7 +5823,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81bc801dee1f3d707a3fb6d588a556c5", "x-ms-return-client-request-id": "true" }, @@ -5692,17 +5832,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:30 GMT", + "Date": "Wed, 16 Jun 2021 00:07:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "25e4f5a9-fe83-46f5-bee5-0cb0f69ada88", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-request-id": "25e4f5a9-fe83-46f5-bee5-0cb0f69ada88", - "x-ms-routing-request-id": "WESTUS2:20210519T190231Z:25e4f5a9-fe83-46f5-bee5-0cb0f69ada88" + "x-ms-correlation-request-id": "ed071dda-b943-41aa-ad27-26f5b9ef91dc", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "ed071dda-b943-41aa-ad27-26f5b9ef91dc", + "x-ms-routing-request-id": "WESTUS2:20210616T000733Z:ed071dda-b943-41aa-ad27-26f5b9ef91dc" }, "ResponseBody": [] }, @@ -5711,7 +5851,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "be53d2a1a233714dc4da91cc9aaccdf4", "x-ms-return-client-request-id": "true" }, @@ -5720,17 +5860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:31 GMT", + "Date": "Wed, 16 Jun 2021 00:07:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b100d071-d700-4bf9-9aea-ef5ba741e013", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-request-id": "b100d071-d700-4bf9-9aea-ef5ba741e013", - "x-ms-routing-request-id": "WESTUS2:20210519T190232Z:b100d071-d700-4bf9-9aea-ef5ba741e013" + "x-ms-correlation-request-id": "3e0d32f8-edad-49e0-b5c7-ebed31cb4532", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "3e0d32f8-edad-49e0-b5c7-ebed31cb4532", + "x-ms-routing-request-id": "WESTUS2:20210616T000734Z:3e0d32f8-edad-49e0-b5c7-ebed31cb4532" }, "ResponseBody": [] }, @@ -5739,7 +5879,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f156e028d7f86991f9ce5ffeb0e8833", "x-ms-return-client-request-id": "true" }, @@ -5748,17 +5888,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:32 GMT", + "Date": "Wed, 16 Jun 2021 00:07:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f2336436-309d-4c63-a273-b25409b22a02", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-request-id": "f2336436-309d-4c63-a273-b25409b22a02", - "x-ms-routing-request-id": "WESTUS2:20210519T190233Z:f2336436-309d-4c63-a273-b25409b22a02" + "x-ms-correlation-request-id": "26b1fb21-125b-482e-b847-ade5749e99dc", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "26b1fb21-125b-482e-b847-ade5749e99dc", + "x-ms-routing-request-id": "WESTUS2:20210616T000735Z:26b1fb21-125b-482e-b847-ade5749e99dc" }, "ResponseBody": [] }, @@ -5767,7 +5907,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "316009fb86887be6324bbc455da3a3cd", "x-ms-return-client-request-id": "true" }, @@ -5776,17 +5916,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:33 GMT", + "Date": "Wed, 16 Jun 2021 00:07:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7efae90d-63ea-4978-ab5c-f0da8c19f46e", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-request-id": "7efae90d-63ea-4978-ab5c-f0da8c19f46e", - "x-ms-routing-request-id": "WESTUS2:20210519T190234Z:7efae90d-63ea-4978-ab5c-f0da8c19f46e" + "x-ms-correlation-request-id": "2122fed3-5bd3-4801-a050-e4d3556469c2", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "2122fed3-5bd3-4801-a050-e4d3556469c2", + "x-ms-routing-request-id": "WESTUS2:20210616T000736Z:2122fed3-5bd3-4801-a050-e4d3556469c2" }, "ResponseBody": [] }, @@ -5795,7 +5935,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ad3c271c790134639cc9e97bd4e85b5", "x-ms-return-client-request-id": "true" }, @@ -5804,17 +5944,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:34 GMT", + "Date": "Wed, 16 Jun 2021 00:07:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "57a153f2-65ae-4265-a228-053186ad85b3", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-request-id": "57a153f2-65ae-4265-a228-053186ad85b3", - "x-ms-routing-request-id": "WESTUS2:20210519T190235Z:57a153f2-65ae-4265-a228-053186ad85b3" + "x-ms-correlation-request-id": "c3842818-ddb3-4ff3-8ffb-922bc6fab92d", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "c3842818-ddb3-4ff3-8ffb-922bc6fab92d", + "x-ms-routing-request-id": "WESTUS2:20210616T000737Z:c3842818-ddb3-4ff3-8ffb-922bc6fab92d" }, "ResponseBody": [] }, @@ -5823,7 +5963,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "90d05e519b4c7c6c879a5d34d053297c", "x-ms-return-client-request-id": "true" }, @@ -5832,17 +5972,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:35 GMT", + "Date": "Wed, 16 Jun 2021 00:07:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f9cc29f1-78b7-4484-ad8f-32a155124e6d", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-request-id": "f9cc29f1-78b7-4484-ad8f-32a155124e6d", - "x-ms-routing-request-id": "WESTUS2:20210519T190236Z:f9cc29f1-78b7-4484-ad8f-32a155124e6d" + "x-ms-correlation-request-id": "2dc425bd-39c0-4798-9ed5-f01231288de6", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "2dc425bd-39c0-4798-9ed5-f01231288de6", + "x-ms-routing-request-id": "WESTUS2:20210616T000738Z:2dc425bd-39c0-4798-9ed5-f01231288de6" }, "ResponseBody": [] }, @@ -5851,7 +5991,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "298d17f86e3b34a3c34cf7bbe74fbde4", "x-ms-return-client-request-id": "true" }, @@ -5860,17 +6000,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:36 GMT", + "Date": "Wed, 16 Jun 2021 00:07:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d4cb8a7b-9a59-471c-a5c7-fba426d7af9b", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-request-id": "d4cb8a7b-9a59-471c-a5c7-fba426d7af9b", - "x-ms-routing-request-id": "WESTUS2:20210519T190237Z:d4cb8a7b-9a59-471c-a5c7-fba426d7af9b" + "x-ms-correlation-request-id": "9ebc60c9-68ad-4d08-ae78-51889e1f9d69", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "9ebc60c9-68ad-4d08-ae78-51889e1f9d69", + "x-ms-routing-request-id": "WESTUS2:20210616T000739Z:9ebc60c9-68ad-4d08-ae78-51889e1f9d69" }, "ResponseBody": [] }, @@ -5879,7 +6019,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fef306c513d2d681555692f5691142e5", "x-ms-return-client-request-id": "true" }, @@ -5888,17 +6028,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:37 GMT", + "Date": "Wed, 16 Jun 2021 00:07:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dd2a9834-feb5-4780-99b7-f0fcf1f38568", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-request-id": "dd2a9834-feb5-4780-99b7-f0fcf1f38568", - "x-ms-routing-request-id": "WESTUS2:20210519T190238Z:dd2a9834-feb5-4780-99b7-f0fcf1f38568" + "x-ms-correlation-request-id": "d8b04e5c-7e60-4009-84be-c5636848bfdf", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "d8b04e5c-7e60-4009-84be-c5636848bfdf", + "x-ms-routing-request-id": "WESTUS2:20210616T000740Z:d8b04e5c-7e60-4009-84be-c5636848bfdf" }, "ResponseBody": [] }, @@ -5907,7 +6047,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a59f22a35cc0e379ba9cccffa3b09538", "x-ms-return-client-request-id": "true" }, @@ -5916,17 +6056,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:38 GMT", + "Date": "Wed, 16 Jun 2021 00:07:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bd6daf95-bd89-427a-b0aa-50d594a753af", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-request-id": "bd6daf95-bd89-427a-b0aa-50d594a753af", - "x-ms-routing-request-id": "WESTUS2:20210519T190239Z:bd6daf95-bd89-427a-b0aa-50d594a753af" + "x-ms-correlation-request-id": "9a1d272d-63dd-4243-9c94-70f9d308724b", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "9a1d272d-63dd-4243-9c94-70f9d308724b", + "x-ms-routing-request-id": "WESTUS2:20210616T000741Z:9a1d272d-63dd-4243-9c94-70f9d308724b" }, "ResponseBody": [] }, @@ -5935,7 +6075,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ca6e79dc2a5fe5aa96b7d3e5dbadcab1", "x-ms-return-client-request-id": "true" }, @@ -5944,17 +6084,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:40 GMT", + "Date": "Wed, 16 Jun 2021 00:07:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f9bee9b6-3267-4a9e-a14e-605d58898bad", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-request-id": "f9bee9b6-3267-4a9e-a14e-605d58898bad", - "x-ms-routing-request-id": "WESTUS2:20210519T190240Z:f9bee9b6-3267-4a9e-a14e-605d58898bad" + "x-ms-correlation-request-id": "5380b425-215e-4aab-8f6a-4de851eb460b", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "5380b425-215e-4aab-8f6a-4de851eb460b", + "x-ms-routing-request-id": "WESTUS2:20210616T000742Z:5380b425-215e-4aab-8f6a-4de851eb460b" }, "ResponseBody": [] }, @@ -5963,7 +6103,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c517120a18af68238c104336468232a5", "x-ms-return-client-request-id": "true" }, @@ -5972,17 +6112,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:41 GMT", + "Date": "Wed, 16 Jun 2021 00:07:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "64a7e942-e6f3-4623-95e1-260d83407506", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-request-id": "64a7e942-e6f3-4623-95e1-260d83407506", - "x-ms-routing-request-id": "WESTUS2:20210519T190241Z:64a7e942-e6f3-4623-95e1-260d83407506" + "x-ms-correlation-request-id": "8631ba3f-9f90-4e3a-bbba-7c5504a42c8f", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "8631ba3f-9f90-4e3a-bbba-7c5504a42c8f", + "x-ms-routing-request-id": "WESTUS2:20210616T000743Z:8631ba3f-9f90-4e3a-bbba-7c5504a42c8f" }, "ResponseBody": [] }, @@ -5991,7 +6131,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f0185ac178a3798677b90f098994070d", "x-ms-return-client-request-id": "true" }, @@ -6000,17 +6140,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:42 GMT", + "Date": "Wed, 16 Jun 2021 00:07:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "97a26f87-09a3-4c98-b1cf-0f5e34ea5c62", - "x-ms-ratelimit-remaining-subscription-reads": "11744", - "x-ms-request-id": "97a26f87-09a3-4c98-b1cf-0f5e34ea5c62", - "x-ms-routing-request-id": "WESTUS2:20210519T190242Z:97a26f87-09a3-4c98-b1cf-0f5e34ea5c62" + "x-ms-correlation-request-id": "bf9513ee-a56f-49a0-b53d-ba2912a14cb0", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "bf9513ee-a56f-49a0-b53d-ba2912a14cb0", + "x-ms-routing-request-id": "WESTUS2:20210616T000744Z:bf9513ee-a56f-49a0-b53d-ba2912a14cb0" }, "ResponseBody": [] }, @@ -6019,7 +6159,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91f41ad1d099c48855063d4fe6749e13", "x-ms-return-client-request-id": "true" }, @@ -6028,17 +6168,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:43 GMT", + "Date": "Wed, 16 Jun 2021 00:07:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8d59dced-c09c-45ce-938a-682c4f4e856d", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-request-id": "8d59dced-c09c-45ce-938a-682c4f4e856d", - "x-ms-routing-request-id": "WESTUS2:20210519T190243Z:8d59dced-c09c-45ce-938a-682c4f4e856d" + "x-ms-correlation-request-id": "34ec5194-185b-4b94-9f8c-83befed24e52", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "34ec5194-185b-4b94-9f8c-83befed24e52", + "x-ms-routing-request-id": "WESTUS2:20210616T000745Z:34ec5194-185b-4b94-9f8c-83befed24e52" }, "ResponseBody": [] }, @@ -6047,7 +6187,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "81242e85da95910e8b9e4df5091adff8", "x-ms-return-client-request-id": "true" }, @@ -6056,17 +6196,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:44 GMT", + "Date": "Wed, 16 Jun 2021 00:07:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "fdb2699a-42ad-4dde-a366-5462c72a9224", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-request-id": "fdb2699a-42ad-4dde-a366-5462c72a9224", - "x-ms-routing-request-id": "WESTUS2:20210519T190244Z:fdb2699a-42ad-4dde-a366-5462c72a9224" + "x-ms-correlation-request-id": "38fa42ea-3300-4441-98d1-2e6fde9361e4", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "38fa42ea-3300-4441-98d1-2e6fde9361e4", + "x-ms-routing-request-id": "WESTUS2:20210616T000746Z:38fa42ea-3300-4441-98d1-2e6fde9361e4" }, "ResponseBody": [] }, @@ -6075,7 +6215,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2c653608a08df10bd1539b9c3b369303", "x-ms-return-client-request-id": "true" }, @@ -6084,17 +6224,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:45 GMT", + "Date": "Wed, 16 Jun 2021 00:07:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b9901031-9d71-478d-b62a-bd093e677ecb", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-request-id": "b9901031-9d71-478d-b62a-bd093e677ecb", - "x-ms-routing-request-id": "WESTUS2:20210519T190245Z:b9901031-9d71-478d-b62a-bd093e677ecb" + "x-ms-correlation-request-id": "f1f97544-a340-4142-8530-0e9898201b32", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "f1f97544-a340-4142-8530-0e9898201b32", + "x-ms-routing-request-id": "WESTUS2:20210616T000747Z:f1f97544-a340-4142-8530-0e9898201b32" }, "ResponseBody": [] }, @@ -6103,7 +6243,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a84fb1b866ff7770b6305fa8292bb3b", "x-ms-return-client-request-id": "true" }, @@ -6112,17 +6252,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:46 GMT", + "Date": "Wed, 16 Jun 2021 00:07:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e9d6903c-3271-4d42-8e5d-4be6fc92bb96", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-request-id": "e9d6903c-3271-4d42-8e5d-4be6fc92bb96", - "x-ms-routing-request-id": "WESTUS2:20210519T190246Z:e9d6903c-3271-4d42-8e5d-4be6fc92bb96" + "x-ms-correlation-request-id": "8f1f1aea-3447-4840-9f85-8b62c7b133b1", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "8f1f1aea-3447-4840-9f85-8b62c7b133b1", + "x-ms-routing-request-id": "WESTUS2:20210616T000748Z:8f1f1aea-3447-4840-9f85-8b62c7b133b1" }, "ResponseBody": [] }, @@ -6131,7 +6271,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "af474426720ee4862233af413e725555", "x-ms-return-client-request-id": "true" }, @@ -6140,17 +6280,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:47 GMT", + "Date": "Wed, 16 Jun 2021 00:07:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-request-id": "6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998", - "x-ms-routing-request-id": "WESTUS2:20210519T190247Z:6f46ee75-0f7b-43ef-9bd3-e6f97b7a1998" + "x-ms-correlation-request-id": "8ed0b489-c009-4a8c-9324-25a51470045f", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "8ed0b489-c009-4a8c-9324-25a51470045f", + "x-ms-routing-request-id": "WESTUS2:20210616T000749Z:8ed0b489-c009-4a8c-9324-25a51470045f" }, "ResponseBody": [] }, @@ -6159,7 +6299,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dda490b84968288be6e20299b116e3f", "x-ms-return-client-request-id": "true" }, @@ -6168,17 +6308,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:48 GMT", + "Date": "Wed, 16 Jun 2021 00:07:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3d92a23c-96a6-418b-8d96-0a622fc79aa0", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-request-id": "3d92a23c-96a6-418b-8d96-0a622fc79aa0", - "x-ms-routing-request-id": "WESTUS2:20210519T190249Z:3d92a23c-96a6-418b-8d96-0a622fc79aa0" + "x-ms-correlation-request-id": "7d1466c1-4088-4fb7-8495-9404c06d38ec", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "7d1466c1-4088-4fb7-8495-9404c06d38ec", + "x-ms-routing-request-id": "WESTUS2:20210616T000750Z:7d1466c1-4088-4fb7-8495-9404c06d38ec" }, "ResponseBody": [] }, @@ -6187,7 +6327,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f6756098e3efa9f4749f383cd636b899", "x-ms-return-client-request-id": "true" }, @@ -6196,17 +6336,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:49 GMT", + "Date": "Wed, 16 Jun 2021 00:07:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-request-id": "5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7", - "x-ms-routing-request-id": "WESTUS2:20210519T190250Z:5d9ffcdc-95b5-4a72-aa49-a6984ed2ede7" + "x-ms-correlation-request-id": "3711be18-4755-4425-8015-9d1baec69fcd", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "3711be18-4755-4425-8015-9d1baec69fcd", + "x-ms-routing-request-id": "WESTUS2:20210616T000751Z:3711be18-4755-4425-8015-9d1baec69fcd" }, "ResponseBody": [] }, @@ -6215,7 +6355,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "38efb00dadb8a1a4bbc4f0a0515d4911", "x-ms-return-client-request-id": "true" }, @@ -6224,17 +6364,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:50 GMT", + "Date": "Wed, 16 Jun 2021 00:07:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4dcaaa23-1844-47b0-98e3-8e699c9d20de", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-request-id": "4dcaaa23-1844-47b0-98e3-8e699c9d20de", - "x-ms-routing-request-id": "WESTUS2:20210519T190251Z:4dcaaa23-1844-47b0-98e3-8e699c9d20de" + "x-ms-correlation-request-id": "eeed9f2c-9a89-45a8-84c4-4ff376177b6e", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "eeed9f2c-9a89-45a8-84c4-4ff376177b6e", + "x-ms-routing-request-id": "WESTUS2:20210616T000752Z:eeed9f2c-9a89-45a8-84c4-4ff376177b6e" }, "ResponseBody": [] }, @@ -6243,7 +6383,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "dea870c45efc2765553199f64c4cab88", "x-ms-return-client-request-id": "true" }, @@ -6252,17 +6392,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:51 GMT", + "Date": "Wed, 16 Jun 2021 00:07:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-request-id": "17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf", - "x-ms-routing-request-id": "WESTUS2:20210519T190252Z:17938e0a-9b34-4a24-8b1a-ecd95bcf1ddf" + "x-ms-correlation-request-id": "d9d7c477-4550-4321-bebb-67c366f24c96", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "d9d7c477-4550-4321-bebb-67c366f24c96", + "x-ms-routing-request-id": "WESTUS2:20210616T000753Z:d9d7c477-4550-4321-bebb-67c366f24c96" }, "ResponseBody": [] }, @@ -6271,7 +6411,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ea1b86b53621eb87bbd33b2af2545717", "x-ms-return-client-request-id": "true" }, @@ -6280,17 +6420,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:52 GMT", + "Date": "Wed, 16 Jun 2021 00:07:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e8048ec6-5dc4-441b-b452-13d0e405ed4c", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "e8048ec6-5dc4-441b-b452-13d0e405ed4c", - "x-ms-routing-request-id": "WESTUS2:20210519T190253Z:e8048ec6-5dc4-441b-b452-13d0e405ed4c" + "x-ms-correlation-request-id": "6d8440aa-b4f7-4d0d-8bad-5067f3d95b1d", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "6d8440aa-b4f7-4d0d-8bad-5067f3d95b1d", + "x-ms-routing-request-id": "WESTUS2:20210616T000755Z:6d8440aa-b4f7-4d0d-8bad-5067f3d95b1d" }, "ResponseBody": [] }, @@ -6299,7 +6439,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "65772656d98dae9d4ac7e38613ae556f", "x-ms-return-client-request-id": "true" }, @@ -6308,17 +6448,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:54 GMT", + "Date": "Wed, 16 Jun 2021 00:07:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "931bd314-9dc1-4891-838f-27c44f8fa1d5", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "931bd314-9dc1-4891-838f-27c44f8fa1d5", - "x-ms-routing-request-id": "WESTUS2:20210519T190254Z:931bd314-9dc1-4891-838f-27c44f8fa1d5" + "x-ms-correlation-request-id": "f50de0f7-9130-4e04-aaeb-e3319a1296ee", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "f50de0f7-9130-4e04-aaeb-e3319a1296ee", + "x-ms-routing-request-id": "WESTUS2:20210616T000756Z:f50de0f7-9130-4e04-aaeb-e3319a1296ee" }, "ResponseBody": [] }, @@ -6327,7 +6467,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cbea68195e418eefe9bd2328233a3501", "x-ms-return-client-request-id": "true" }, @@ -6336,17 +6476,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:55 GMT", + "Date": "Wed, 16 Jun 2021 00:07:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a39139ff-353f-4d49-bd51-ec8b01e58dcd", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "a39139ff-353f-4d49-bd51-ec8b01e58dcd", - "x-ms-routing-request-id": "WESTUS2:20210519T190255Z:a39139ff-353f-4d49-bd51-ec8b01e58dcd" + "x-ms-correlation-request-id": "e34070c4-df0d-4382-8500-9567dd02bc77", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "e34070c4-df0d-4382-8500-9567dd02bc77", + "x-ms-routing-request-id": "WESTUS2:20210616T000757Z:e34070c4-df0d-4382-8500-9567dd02bc77" }, "ResponseBody": [] }, @@ -6355,7 +6495,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "25a081da46d4dcfae96d9f5a5300d70d", "x-ms-return-client-request-id": "true" }, @@ -6364,17 +6504,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:56 GMT", + "Date": "Wed, 16 Jun 2021 00:07:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee", - "x-ms-routing-request-id": "WESTUS2:20210519T190256Z:ec6b11dd-36db-4e11-bd7b-3f6a01f4d7ee" + "x-ms-correlation-request-id": "de3c50fb-2399-4e66-a233-24151d651bac", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "de3c50fb-2399-4e66-a233-24151d651bac", + "x-ms-routing-request-id": "WESTUS2:20210616T000758Z:de3c50fb-2399-4e66-a233-24151d651bac" }, "ResponseBody": [] }, @@ -6383,7 +6523,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8a11cb7e8b69f7d636e97cd0b6758b10", "x-ms-return-client-request-id": "true" }, @@ -6392,17 +6532,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:57 GMT", + "Date": "Wed, 16 Jun 2021 00:07:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "90896b44-20bb-4a58-a5a9-ca78902291e5", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "90896b44-20bb-4a58-a5a9-ca78902291e5", - "x-ms-routing-request-id": "WESTUS2:20210519T190257Z:90896b44-20bb-4a58-a5a9-ca78902291e5" + "x-ms-correlation-request-id": "92ea5105-d091-440f-ab7e-5114e51ff528", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "92ea5105-d091-440f-ab7e-5114e51ff528", + "x-ms-routing-request-id": "WESTUS2:20210616T000759Z:92ea5105-d091-440f-ab7e-5114e51ff528" }, "ResponseBody": [] }, @@ -6411,7 +6551,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "91ace2922f0ed39a6d0ee2d4bf953be9", "x-ms-return-client-request-id": "true" }, @@ -6420,17 +6560,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:58 GMT", + "Date": "Wed, 16 Jun 2021 00:07:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2d543637-fefa-49f8-9285-df1da02a185e", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "2d543637-fefa-49f8-9285-df1da02a185e", - "x-ms-routing-request-id": "WESTUS2:20210519T190258Z:2d543637-fefa-49f8-9285-df1da02a185e" + "x-ms-correlation-request-id": "0d8aaf98-5511-482d-b3dd-e01086aa36a2", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "0d8aaf98-5511-482d-b3dd-e01086aa36a2", + "x-ms-routing-request-id": "WESTUS2:20210616T000800Z:0d8aaf98-5511-482d-b3dd-e01086aa36a2" }, "ResponseBody": [] }, @@ -6439,7 +6579,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "57a915e6aa294e97aba8eeebca2a2573", "x-ms-return-client-request-id": "true" }, @@ -6448,17 +6588,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:59 GMT", + "Date": "Wed, 16 Jun 2021 00:08:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0b0e7c62-dfe9-4a73-880a-dff1a4360b6d", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "0b0e7c62-dfe9-4a73-880a-dff1a4360b6d", - "x-ms-routing-request-id": "WESTUS2:20210519T190259Z:0b0e7c62-dfe9-4a73-880a-dff1a4360b6d" + "x-ms-correlation-request-id": "69b58291-47e7-46dd-846f-7620746ec6b7", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "69b58291-47e7-46dd-846f-7620746ec6b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000801Z:69b58291-47e7-46dd-846f-7620746ec6b7" }, "ResponseBody": [] }, @@ -6467,7 +6607,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "71c78fe145534ffe313e1c5aa90238a1", "x-ms-return-client-request-id": "true" }, @@ -6476,17 +6616,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:00 GMT", + "Date": "Wed, 16 Jun 2021 00:08:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "587f52c5-1571-41f9-9499-6aa55a920520", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "587f52c5-1571-41f9-9499-6aa55a920520", - "x-ms-routing-request-id": "WESTUS2:20210519T190300Z:587f52c5-1571-41f9-9499-6aa55a920520" + "x-ms-correlation-request-id": "bef04899-18af-43c9-9a32-f1b7e715d636", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "bef04899-18af-43c9-9a32-f1b7e715d636", + "x-ms-routing-request-id": "WESTUS2:20210616T000802Z:bef04899-18af-43c9-9a32-f1b7e715d636" }, "ResponseBody": [] }, @@ -6495,7 +6635,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a0e992ad33cbe7e64a5ee66640ae0843", "x-ms-return-client-request-id": "true" }, @@ -6504,17 +6644,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:01 GMT", + "Date": "Wed, 16 Jun 2021 00:08:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9e15a922-2bb8-4fb4-9353-6ab1d822e35d", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "9e15a922-2bb8-4fb4-9353-6ab1d822e35d", - "x-ms-routing-request-id": "WESTUS2:20210519T190301Z:9e15a922-2bb8-4fb4-9353-6ab1d822e35d" + "x-ms-correlation-request-id": "8b0557a1-2443-4ca7-8f4a-8538a72e5383", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "8b0557a1-2443-4ca7-8f4a-8538a72e5383", + "x-ms-routing-request-id": "WESTUS2:20210616T000803Z:8b0557a1-2443-4ca7-8f4a-8538a72e5383" }, "ResponseBody": [] }, @@ -6523,7 +6663,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2ff26ee9cacea195165a26ea8e3da4a9", "x-ms-return-client-request-id": "true" }, @@ -6532,17 +6672,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:02 GMT", + "Date": "Wed, 16 Jun 2021 00:08:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "80d5671d-c715-4327-ae1b-364d45b020af", - "x-ms-ratelimit-remaining-subscription-reads": "11706", - "x-ms-request-id": "80d5671d-c715-4327-ae1b-364d45b020af", - "x-ms-routing-request-id": "WESTUS2:20210519T190302Z:80d5671d-c715-4327-ae1b-364d45b020af" + "x-ms-correlation-request-id": "040a0a35-d11d-4ef8-aace-975b066dec51", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "040a0a35-d11d-4ef8-aace-975b066dec51", + "x-ms-routing-request-id": "WESTUS2:20210616T000804Z:040a0a35-d11d-4ef8-aace-975b066dec51" }, "ResponseBody": [] }, @@ -6551,7 +6691,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "373d4d6f8440aea8a8df26f55f980e82", "x-ms-return-client-request-id": "true" }, @@ -6560,17 +6700,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:03 GMT", + "Date": "Wed, 16 Jun 2021 00:08:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cab1d960-e692-4632-8693-00645e13cde4", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "cab1d960-e692-4632-8693-00645e13cde4", - "x-ms-routing-request-id": "WESTUS2:20210519T190303Z:cab1d960-e692-4632-8693-00645e13cde4" + "x-ms-correlation-request-id": "92df96b3-d4a2-423f-bc2f-c1a838a9f6a8", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "92df96b3-d4a2-423f-bc2f-c1a838a9f6a8", + "x-ms-routing-request-id": "WESTUS2:20210616T000805Z:92df96b3-d4a2-423f-bc2f-c1a838a9f6a8" }, "ResponseBody": [] }, @@ -6579,7 +6719,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3a71d8350810e3d2fc4889700cfc590c", "x-ms-return-client-request-id": "true" }, @@ -6588,17 +6728,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:04 GMT", + "Date": "Wed, 16 Jun 2021 00:08:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cdefcc84-7193-4b11-8cde-ac29731b3c0f", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "cdefcc84-7193-4b11-8cde-ac29731b3c0f", - "x-ms-routing-request-id": "WESTUS2:20210519T190304Z:cdefcc84-7193-4b11-8cde-ac29731b3c0f" + "x-ms-correlation-request-id": "ccd24b48-9b22-487c-8db3-57d83b05a508", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "ccd24b48-9b22-487c-8db3-57d83b05a508", + "x-ms-routing-request-id": "WESTUS2:20210616T000806Z:ccd24b48-9b22-487c-8db3-57d83b05a508" }, "ResponseBody": [] }, @@ -6607,7 +6747,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2f63cb9d1706402c54386eea3a0417e", "x-ms-return-client-request-id": "true" }, @@ -6616,17 +6756,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:05 GMT", + "Date": "Wed, 16 Jun 2021 00:08:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b70349ac-6879-4012-b11a-96be28b61b92", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "b70349ac-6879-4012-b11a-96be28b61b92", - "x-ms-routing-request-id": "WESTUS2:20210519T190305Z:b70349ac-6879-4012-b11a-96be28b61b92" + "x-ms-correlation-request-id": "5c973395-d239-4e5f-80d0-192e81806794", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "5c973395-d239-4e5f-80d0-192e81806794", + "x-ms-routing-request-id": "WESTUS2:20210616T000807Z:5c973395-d239-4e5f-80d0-192e81806794" }, "ResponseBody": [] }, @@ -6635,7 +6775,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b5b5a44c69cc66997a5a3af7fa38a2ac", "x-ms-return-client-request-id": "true" }, @@ -6644,17 +6784,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:06 GMT", + "Date": "Wed, 16 Jun 2021 00:08:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a610b887-8055-4c82-a6f3-a2b4b7acf560", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "a610b887-8055-4c82-a6f3-a2b4b7acf560", - "x-ms-routing-request-id": "WESTUS2:20210519T190306Z:a610b887-8055-4c82-a6f3-a2b4b7acf560" + "x-ms-correlation-request-id": "fc28120a-e965-48d0-b479-c53212ad27d2", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "fc28120a-e965-48d0-b479-c53212ad27d2", + "x-ms-routing-request-id": "WESTUS2:20210616T000808Z:fc28120a-e965-48d0-b479-c53212ad27d2" }, "ResponseBody": [] }, @@ -6663,7 +6803,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "223b1a861ba26411d50c75cc82e4405c", "x-ms-return-client-request-id": "true" }, @@ -6672,17 +6812,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:07 GMT", + "Date": "Wed, 16 Jun 2021 00:08:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "106c1f55-18bf-4070-869c-28d4b732cdf6", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "106c1f55-18bf-4070-869c-28d4b732cdf6", - "x-ms-routing-request-id": "WESTUS2:20210519T190307Z:106c1f55-18bf-4070-869c-28d4b732cdf6" + "x-ms-correlation-request-id": "4206f8be-3827-438e-9dd4-5b1480d7d536", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "4206f8be-3827-438e-9dd4-5b1480d7d536", + "x-ms-routing-request-id": "WESTUS2:20210616T000809Z:4206f8be-3827-438e-9dd4-5b1480d7d536" }, "ResponseBody": [] }, @@ -6691,7 +6831,7 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "68230b06a3464f3fa38f7716970a698d", "x-ms-return-client-request-id": "true" }, @@ -6700,17 +6840,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:08 GMT", + "Date": "Wed, 16 Jun 2021 00:08:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "69d1eb9e-30ee-43c3-8b1d-bc13d03faa37", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "69d1eb9e-30ee-43c3-8b1d-bc13d03faa37", - "x-ms-routing-request-id": "WESTUS2:20210519T190308Z:69d1eb9e-30ee-43c3-8b1d-bc13d03faa37" + "x-ms-correlation-request-id": "b1d71dfa-8823-4fd3-92e8-00e63d4c2e69", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "b1d71dfa-8823-4fd3-92e8-00e63d4c2e69", + "x-ms-routing-request-id": "WESTUS2:20210616T000810Z:b1d71dfa-8823-4fd3-92e8-00e63d4c2e69" }, "ResponseBody": [] }, @@ -6719,23 +6859,1619 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8868daa01f6530db9251dfc0f4cce496", "x-ms-return-client-request-id": "true" }, "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "29f47d53-5281-463a-99c7-5156bd4a1953", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "29f47d53-5281-463a-99c7-5156bd4a1953", + "x-ms-routing-request-id": "WESTUS2:20210616T000811Z:29f47d53-5281-463a-99c7-5156bd4a1953" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eff1de1a3914e265daeb7e12a3fbccca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "adcd4e94-dcf7-4435-a290-926c73c6f44c", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "adcd4e94-dcf7-4435-a290-926c73c6f44c", + "x-ms-routing-request-id": "WESTUS2:20210616T000812Z:adcd4e94-dcf7-4435-a290-926c73c6f44c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a72ce8a2b77be6f730f3d6f5c37f5bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c4c98e75-0fd6-4d7d-a331-a6ba613de75a", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "c4c98e75-0fd6-4d7d-a331-a6ba613de75a", + "x-ms-routing-request-id": "WESTUS2:20210616T000813Z:c4c98e75-0fd6-4d7d-a331-a6ba613de75a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9fce1ab7a1966787485ae79a1c88c97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b1784d1c-072c-4496-a25d-3cd3c49c5a16", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "b1784d1c-072c-4496-a25d-3cd3c49c5a16", + "x-ms-routing-request-id": "WESTUS2:20210616T000814Z:b1784d1c-072c-4496-a25d-3cd3c49c5a16" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0c1d14843ca0621ae60abf2163701e5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0dbc9497-0e34-422b-8406-6a1a252be79c", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "0dbc9497-0e34-422b-8406-6a1a252be79c", + "x-ms-routing-request-id": "WESTUS2:20210616T000815Z:0dbc9497-0e34-422b-8406-6a1a252be79c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c267a79013fe27b16fc533f5097d4567", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f344e1ed-3c7e-4bc5-9c5b-bb84af46673e", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "f344e1ed-3c7e-4bc5-9c5b-bb84af46673e", + "x-ms-routing-request-id": "WESTUS2:20210616T000816Z:f344e1ed-3c7e-4bc5-9c5b-bb84af46673e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ae713e664e626e37c699d20fbb560304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "290dfb6d-013d-4254-a2bc-f1ced1c8afdf", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "290dfb6d-013d-4254-a2bc-f1ced1c8afdf", + "x-ms-routing-request-id": "WESTUS2:20210616T000817Z:290dfb6d-013d-4254-a2bc-f1ced1c8afdf" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fae85367ca61709863f59cdb08245969", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "88183174-fabd-403f-b849-1c611a3566cd", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "88183174-fabd-403f-b849-1c611a3566cd", + "x-ms-routing-request-id": "WESTUS2:20210616T000818Z:88183174-fabd-403f-b849-1c611a3566cd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "25ba57c56ffe42f86ff8fb6441a26c19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "892371f7-11fc-46fc-91b3-d9d0492106c6", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "892371f7-11fc-46fc-91b3-d9d0492106c6", + "x-ms-routing-request-id": "WESTUS2:20210616T000819Z:892371f7-11fc-46fc-91b3-d9d0492106c6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b58e2fc24a959c05a5014b6cb25c66a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c1dbf08d-808d-4ac8-b680-97865cb947f7", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "c1dbf08d-808d-4ac8-b680-97865cb947f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000821Z:c1dbf08d-808d-4ac8-b680-97865cb947f7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "63496840dd9cf7055ba68a68ce332ec1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "37aeeb19-73f0-4580-bc5f-4becb4db0868", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "37aeeb19-73f0-4580-bc5f-4becb4db0868", + "x-ms-routing-request-id": "WESTUS2:20210616T000822Z:37aeeb19-73f0-4580-bc5f-4becb4db0868" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d9188389a4967ad4521e7ffc248c8f13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e0d11c33-24ff-490a-ae05-01fa577172a9", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "e0d11c33-24ff-490a-ae05-01fa577172a9", + "x-ms-routing-request-id": "WESTUS2:20210616T000823Z:e0d11c33-24ff-490a-ae05-01fa577172a9" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8245a920858e47c29965aeec09ccd71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5fc54d0d-0ece-42fb-8a7a-aaf5cf60aead", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "5fc54d0d-0ece-42fb-8a7a-aaf5cf60aead", + "x-ms-routing-request-id": "WESTUS2:20210616T000824Z:5fc54d0d-0ece-42fb-8a7a-aaf5cf60aead" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2fe289d28c439b0b94cf117d5e09d3ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "47cf4e2c-4ec4-43c0-9afa-8ebcb7fbbe01", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "47cf4e2c-4ec4-43c0-9afa-8ebcb7fbbe01", + "x-ms-routing-request-id": "WESTUS2:20210616T000825Z:47cf4e2c-4ec4-43c0-9afa-8ebcb7fbbe01" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74d67616550f81690634afff4ae5bab5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d8cf250f-9f9c-4631-be6c-3f6a1a997dc7", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "d8cf250f-9f9c-4631-be6c-3f6a1a997dc7", + "x-ms-routing-request-id": "WESTUS2:20210616T000826Z:d8cf250f-9f9c-4631-be6c-3f6a1a997dc7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a2a0d5060a905d04e894388f6ff8520", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a456967c-92c1-4a93-92c5-ea3cb54d3e1e", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "a456967c-92c1-4a93-92c5-ea3cb54d3e1e", + "x-ms-routing-request-id": "WESTUS2:20210616T000827Z:a456967c-92c1-4a93-92c5-ea3cb54d3e1e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "49d78bc359c67c622061280edc0c51af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ffb75229-7338-4fb7-b957-4fbd993a9d04", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "ffb75229-7338-4fb7-b957-4fbd993a9d04", + "x-ms-routing-request-id": "WESTUS2:20210616T000828Z:ffb75229-7338-4fb7-b957-4fbd993a9d04" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "512c5c1438deb625a6d0258511e08a06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "de219d86-8e36-4060-9197-b9ef6494c71d", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "de219d86-8e36-4060-9197-b9ef6494c71d", + "x-ms-routing-request-id": "WESTUS2:20210616T000829Z:de219d86-8e36-4060-9197-b9ef6494c71d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "be3b8fae710ef6eeaaad7a4838c12942", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c0c43c21-31ea-4a19-9d19-d88250025325", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "c0c43c21-31ea-4a19-9d19-d88250025325", + "x-ms-routing-request-id": "WESTUS2:20210616T000830Z:c0c43c21-31ea-4a19-9d19-d88250025325" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9974943734d38b416521a2f534dc6a3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ece5b7ef-a570-426e-9314-7bb902ff449a", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "ece5b7ef-a570-426e-9314-7bb902ff449a", + "x-ms-routing-request-id": "WESTUS2:20210616T000831Z:ece5b7ef-a570-426e-9314-7bb902ff449a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d6021d692d0a3a06d35a731bddd7ee4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "678d38dc-ec7b-400a-993d-208854670a0b", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "678d38dc-ec7b-400a-993d-208854670a0b", + "x-ms-routing-request-id": "WESTUS2:20210616T000832Z:678d38dc-ec7b-400a-993d-208854670a0b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d4ee3a7f06c7a334daf58eccef8c2cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "51f1df19-6fd6-4b49-a04e-e7b3dff1a55c", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "51f1df19-6fd6-4b49-a04e-e7b3dff1a55c", + "x-ms-routing-request-id": "WESTUS2:20210616T000833Z:51f1df19-6fd6-4b49-a04e-e7b3dff1a55c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "16713a42dc61a471f3d02c9d8c10cd88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "94ce27c1-33e7-4d10-ab98-e14d2729345b", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "94ce27c1-33e7-4d10-ab98-e14d2729345b", + "x-ms-routing-request-id": "WESTUS2:20210616T000834Z:94ce27c1-33e7-4d10-ab98-e14d2729345b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "514ebea3ed8ee5d3eee5ff2039b4d474", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "66c20449-cbc2-4828-b4c9-ac74ec9621cb", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "66c20449-cbc2-4828-b4c9-ac74ec9621cb", + "x-ms-routing-request-id": "WESTUS2:20210616T000835Z:66c20449-cbc2-4828-b4c9-ac74ec9621cb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "82eed973686bca8371a9899bc496ed3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "76a443b6-021e-416e-a08b-a50cd8c1316c", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "76a443b6-021e-416e-a08b-a50cd8c1316c", + "x-ms-routing-request-id": "WESTUS2:20210616T000836Z:76a443b6-021e-416e-a08b-a50cd8c1316c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1049d0e270aa543e678b277cdd506b3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ac2ef903-be7f-4a4c-9807-4b6b986e7b3a", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "ac2ef903-be7f-4a4c-9807-4b6b986e7b3a", + "x-ms-routing-request-id": "WESTUS2:20210616T000837Z:ac2ef903-be7f-4a4c-9807-4b6b986e7b3a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b329b7fc4b213b1d3a84dfe564382057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2c9765ad-0b80-435f-bd14-f7400e8e71c3", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "2c9765ad-0b80-435f-bd14-f7400e8e71c3", + "x-ms-routing-request-id": "WESTUS2:20210616T000838Z:2c9765ad-0b80-435f-bd14-f7400e8e71c3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "693ec1f7c46a02ca9a9a1bdf4007ed20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "91de9f23-ae03-4133-b1f7-b0337f1e5f6e", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "91de9f23-ae03-4133-b1f7-b0337f1e5f6e", + "x-ms-routing-request-id": "WESTUS2:20210616T000839Z:91de9f23-ae03-4133-b1f7-b0337f1e5f6e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0d9f493e3a6c961cb20ed5269059f02f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1b923136-dac2-4aa0-8387-c1b76c51fd9d", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "1b923136-dac2-4aa0-8387-c1b76c51fd9d", + "x-ms-routing-request-id": "WESTUS2:20210616T000840Z:1b923136-dac2-4aa0-8387-c1b76c51fd9d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1c84cf6a011138d4ec2618862f3dfa33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7d34e8e3-36fe-4ee1-bc2e-3780613f68c1", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "7d34e8e3-36fe-4ee1-bc2e-3780613f68c1", + "x-ms-routing-request-id": "WESTUS2:20210616T000841Z:7d34e8e3-36fe-4ee1-bc2e-3780613f68c1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1aa6be961398bceba4a7b65ceea47140", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ebb3f4d0-f7ad-4faa-a507-c21758070229", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "ebb3f4d0-f7ad-4faa-a507-c21758070229", + "x-ms-routing-request-id": "WESTUS2:20210616T000842Z:ebb3f4d0-f7ad-4faa-a507-c21758070229" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7074ebaad1823c0f7567214522956675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7cda88a3-a704-40ca-a04d-72a304d16361", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "7cda88a3-a704-40ca-a04d-72a304d16361", + "x-ms-routing-request-id": "WESTUS2:20210616T000843Z:7cda88a3-a704-40ca-a04d-72a304d16361" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d18fa213d5b25796e4c7776a4a774947", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "3a49344f-75e5-45aa-9f87-02df9cef175b", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "3a49344f-75e5-45aa-9f87-02df9cef175b", + "x-ms-routing-request-id": "WESTUS2:20210616T000844Z:3a49344f-75e5-45aa-9f87-02df9cef175b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "44dcd7b58ac8c5b0af6aa531f2a59a0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a3c55dfc-3ef2-4022-a800-3b47d1780ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "a3c55dfc-3ef2-4022-a800-3b47d1780ef7", + "x-ms-routing-request-id": "WESTUS2:20210616T000845Z:a3c55dfc-3ef2-4022-a800-3b47d1780ef7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4b4941409f15d48d551d8bba59a4f2fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6d3a16a3-4d5c-44ec-9700-45633448db36", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "6d3a16a3-4d5c-44ec-9700-45633448db36", + "x-ms-routing-request-id": "WESTUS2:20210616T000846Z:6d3a16a3-4d5c-44ec-9700-45633448db36" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4a90d91d22b888acf1ca21482f65643f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "69b3cf5a-d430-493e-adfb-4a25e67191eb", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "69b3cf5a-d430-493e-adfb-4a25e67191eb", + "x-ms-routing-request-id": "WESTUS2:20210616T000847Z:69b3cf5a-d430-493e-adfb-4a25e67191eb" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0929682dfe2e15324908efabfef66b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "55b63bf4-71d2-4a8c-a82b-1f31fc124ff1", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "55b63bf4-71d2-4a8c-a82b-1f31fc124ff1", + "x-ms-routing-request-id": "WESTUS2:20210616T000848Z:55b63bf4-71d2-4a8c-a82b-1f31fc124ff1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1914a8784f141e5694c05a4a7d45a5f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "120f3a02-8498-49bc-a3c2-ae086d80d9c7", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "120f3a02-8498-49bc-a3c2-ae086d80d9c7", + "x-ms-routing-request-id": "WESTUS2:20210616T000849Z:120f3a02-8498-49bc-a3c2-ae086d80d9c7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f08d4cb8e87b1fcfa67b01b033018afb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "95359e28-b1b9-4c45-8f28-b0415877cac1", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "95359e28-b1b9-4c45-8f28-b0415877cac1", + "x-ms-routing-request-id": "WESTUS2:20210616T000850Z:95359e28-b1b9-4c45-8f28-b0415877cac1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "87d0165e4b50dd2b120b746da4e79704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "77c21168-c742-4266-b8c2-3a6f8e61d20e", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "77c21168-c742-4266-b8c2-3a6f8e61d20e", + "x-ms-routing-request-id": "WESTUS2:20210616T000851Z:77c21168-c742-4266-b8c2-3a6f8e61d20e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2f2ff637a688f8fd9f572984ea5ea93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ca74c551-b95a-473c-a159-bcbe83295944", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "ca74c551-b95a-473c-a159-bcbe83295944", + "x-ms-routing-request-id": "WESTUS2:20210616T000852Z:ca74c551-b95a-473c-a159-bcbe83295944" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "66ec5e361d746c9f20afde7074617abf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8b797c31-0e18-4a0b-ab95-1c15f740a826", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "8b797c31-0e18-4a0b-ab95-1c15f740a826", + "x-ms-routing-request-id": "WESTUS2:20210616T000854Z:8b797c31-0e18-4a0b-ab95-1c15f740a826" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "344dfce4d70ee4928741ad5bd9928f6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:54 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ed8bdbd4-49eb-4b65-b26c-142a08aa38f2", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "ed8bdbd4-49eb-4b65-b26c-142a08aa38f2", + "x-ms-routing-request-id": "WESTUS2:20210616T000855Z:ed8bdbd4-49eb-4b65-b26c-142a08aa38f2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4537e02030fb458f5f8591b99c1f1a77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab01a3f1-03fa-48ec-9591-2d483265772b", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "ab01a3f1-03fa-48ec-9591-2d483265772b", + "x-ms-routing-request-id": "WESTUS2:20210616T000856Z:ab01a3f1-03fa-48ec-9591-2d483265772b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51b4b37ab6575e84cb08df336f44938d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a7514472-f8bd-4fdd-9064-c1524a5c85dd", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "a7514472-f8bd-4fdd-9064-c1524a5c85dd", + "x-ms-routing-request-id": "WESTUS2:20210616T000857Z:a7514472-f8bd-4fdd-9064-c1524a5c85dd" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "944f7120352ab4c46c08d48845d94768", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dee122a8-5c27-425e-8845-2fd1bbda38a2", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "dee122a8-5c27-425e-8845-2fd1bbda38a2", + "x-ms-routing-request-id": "WESTUS2:20210616T000858Z:dee122a8-5c27-425e-8845-2fd1bbda38a2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "26e136273dde6a155bd879f3505cd51b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5ad4c3f4-24b7-4e7a-b763-929c8e58ef48", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "5ad4c3f4-24b7-4e7a-b763-929c8e58ef48", + "x-ms-routing-request-id": "WESTUS2:20210616T000859Z:5ad4c3f4-24b7-4e7a-b763-929c8e58ef48" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b9903f285cf444deeffe44fe1fc19f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4dc9560a-3f47-49b6-bf9f-ccaeb8148af7", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "4dc9560a-3f47-49b6-bf9f-ccaeb8148af7", + "x-ms-routing-request-id": "WESTUS2:20210616T000900Z:4dc9560a-3f47-49b6-bf9f-ccaeb8148af7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "390c76c06c62e2af5be53851bbd06310", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f7c809e3-fde7-4506-a8fd-6329b30b5a2b", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "f7c809e3-fde7-4506-a8fd-6329b30b5a2b", + "x-ms-routing-request-id": "WESTUS2:20210616T000901Z:f7c809e3-fde7-4506-a8fd-6329b30b5a2b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4195b9331c3fa199e89c37df58c5895f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "05f7ab55-65d0-46b6-838d-c7ebfdb98dae", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "05f7ab55-65d0-46b6-838d-c7ebfdb98dae", + "x-ms-routing-request-id": "WESTUS2:20210616T000902Z:05f7ab55-65d0-46b6-838d-c7ebfdb98dae" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d93286bf9b5085b854b6cfe94dfc891e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a5426964-6d25-4898-af27-fc483f3e3376", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "a5426964-6d25-4898-af27-fc483f3e3376", + "x-ms-routing-request-id": "WESTUS2:20210616T000903Z:a5426964-6d25-4898-af27-fc483f3e3376" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "281cd49cd766a3b2dd6b51c635d08a96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "157e9307-60a9-486c-801f-2eca302e91b7", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "157e9307-60a9-486c-801f-2eca302e91b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000904Z:157e9307-60a9-486c-801f-2eca302e91b7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3492d95c899e97c00010ec894daf53eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dadf2029-804e-46fe-9382-990bcd7ed9a5", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "dadf2029-804e-46fe-9382-990bcd7ed9a5", + "x-ms-routing-request-id": "WESTUS2:20210616T000905Z:dadf2029-804e-46fe-9382-990bcd7ed9a5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8442191261a9e7f8d48ffce549f15084", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cf65a358-e475-446e-8fdc-642169e9a3da", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "cf65a358-e475-446e-8fdc-642169e9a3da", + "x-ms-routing-request-id": "WESTUS2:20210616T000906Z:cf65a358-e475-446e-8fdc-642169e9a3da" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "738d392c5469127f14842756ea29562e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a8415675-2825-464f-8508-2ccc91f01507", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "a8415675-2825-464f-8508-2ccc91f01507", + "x-ms-routing-request-id": "WESTUS2:20210616T000907Z:a8415675-2825-464f-8508-2ccc91f01507" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1cb46617068dfaece0ab600f8dda4e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "61a50ce8-1b86-486d-a387-5aedaebcc1c3", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "61a50ce8-1b86-486d-a387-5aedaebcc1c3", + "x-ms-routing-request-id": "WESTUS2:20210616T000908Z:61a50ce8-1b86-486d-a387-5aedaebcc1c3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "145d68bfe021be829930702439a2fcab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cbb397f7-5a17-463d-bab9-e81f9a2848c0", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "cbb397f7-5a17-463d-bab9-e81f9a2848c0", + "x-ms-routing-request-id": "WESTUS2:20210616T000909Z:cbb397f7-5a17-463d-bab9-e81f9a2848c0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzI1NzQtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e3cecd38343d25f74c9292bef4708439", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 19:03:09 GMT", + "Date": "Wed, 16 Jun 2021 00:09:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aed4204c-8ed3-43e1-afef-cebd4f3cef00", - "x-ms-ratelimit-remaining-subscription-reads": "11691", - "x-ms-request-id": "aed4204c-8ed3-43e1-afef-cebd4f3cef00", - "x-ms-routing-request-id": "WESTUS2:20210519T190309Z:aed4204c-8ed3-43e1-afef-cebd4f3cef00" + "x-ms-correlation-request-id": "8bf459e8-1787-416c-81a6-00174768dfd3", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "8bf459e8-1787-416c-81a6-00174768dfd3", + "x-ms-routing-request-id": "WESTUS2:20210616T000910Z:8bf459e8-1787-416c-81a6-00174768dfd3" }, "ResponseBody": [] } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json index cd0e66e06565..51d390aff5e7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ResourceGroupOperationsTests/ValidateMoveResources()Async.json @@ -6,8 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|b84bef30-4e1fac3c59f9802f.", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f3e3d74074b9262fa37a99b59ebce8fc", "x-ms-return-client-request-id": "true" }, @@ -15,22 +14,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:33 GMT", + "Date": "Wed, 16 Jun 2021 00:06:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44273b6d-0c38-45f3-897b-7780ecc8948e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "44273b6d-0c38-45f3-897b-7780ecc8948e", - "x-ms-routing-request-id": "WESTUS2:20210519T190133Z:44273b6d-0c38-45f3-897b-7780ecc8948e" + "x-ms-correlation-request-id": "0252af72-34c8-4d92-a4f0-aeca9ee82a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "0252af72-34c8-4d92-a4f0-aeca9ee82a6c", + "x-ms-routing-request-id": "WESTUS2:20210616T000632Z:0252af72-34c8-4d92-a4f0-aeca9ee82a6c" }, "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", @@ -50,8 +53,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-2c34268e6de9df4ba3dd54afe1cf0d36-9a5edc7a6fb71c4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-5f3919786dba9643980d297362ba8bdb-93561156dc4b3c44-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "85244823929167409346d1ab79935047", "x-ms-return-client-request-id": "true" }, @@ -59,20 +62,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bff20825-8504-496e-bd10-7b15d31eafd2", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "bff20825-8504-496e-bd10-7b15d31eafd2", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:bff20825-8504-496e-bd10-7b15d31eafd2" + "x-ms-correlation-request-id": "cc223905-365d-4b41-9560-4bef669e215b", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "cc223905-365d-4b41-9560-4bef669e215b", + "x-ms-routing-request-id": "WESTUS2:20210616T000633Z:cc223905-365d-4b41-9560-4bef669e215b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8911", @@ -93,8 +96,8 @@ "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0f8718b913f3d742950d53d83baef83d-a6eb74236506bd4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-e756af8fa77f9b4bb19bec283e5229d5-f1fa4ed309d03a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ae8f175a5fe7bff3256681ae49519f98", "x-ms-return-client-request-id": "true" }, @@ -102,20 +105,20 @@ "location": "West US 2", "tags": {} }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55d16b81-3e8c-4aa7-9a82-c81527653ae3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "55d16b81-3e8c-4aa7-9a82-c81527653ae3", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:55d16b81-3e8c-4aa7-9a82-c81527653ae3" + "x-ms-correlation-request-id": "75550657-e3e4-4355-846e-8e54348b1d49", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "75550657-e3e4-4355-846e-8e54348b1d49", + "x-ms-routing-request-id": "WESTUS2:20210616T000634Z:75550657-e3e4-4355-846e-8e54348b1d49" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6530", @@ -142,17 +145,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52611", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:34 GMT", + "Date": "Wed, 16 Jun 2021 00:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebd353af-a688-4be3-b9bc-4deb8ae891ed", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "ebd353af-a688-4be3-b9bc-4deb8ae891ed", - "x-ms-routing-request-id": "WESTUS2:20210519T190134Z:ebd353af-a688-4be3-b9bc-4deb8ae891ed" + "x-ms-correlation-request-id": "13ded2ac-34de-4a0d-a787-6b9a18d728e4", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "13ded2ac-34de-4a0d-a787-6b9a18d728e4", + "x-ms-routing-request-id": "WESTUS2:20210616T000634Z:13ded2ac-34de-4a0d-a787-6b9a18d728e4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -232,9 +235,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -305,9 +310,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -473,6 +480,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -520,9 +535,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -593,9 +610,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -762,6 +781,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -809,9 +836,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -883,9 +912,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -957,9 +988,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1030,9 +1063,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1105,9 +1140,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1180,9 +1217,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1211,6 +1250,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1266,9 +1306,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1339,9 +1381,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1411,9 +1455,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1474,9 +1520,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1546,9 +1594,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1611,9 +1661,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1676,9 +1728,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -1749,9 +1803,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1814,7 +1870,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1857,9 +1914,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1911,9 +1970,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1964,9 +2025,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2016,9 +2079,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -2063,6 +2128,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2106,9 +2172,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2152,9 +2220,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01" @@ -2198,9 +2268,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-09-30", @@ -2384,9 +2456,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2432,9 +2506,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2480,9 +2556,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2528,9 +2606,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2576,9 +2656,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-03-01", "2020-09-30", "2019-12-01", "2019-07-01", @@ -2624,9 +2706,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2784,6 +2868,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -2831,9 +2923,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2896,9 +2990,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -2960,9 +3056,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3009,9 +3107,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2020-12-01", "2020-09-30", "2020-06-30", @@ -3056,7 +3156,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3196,6 +3297,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3243,7 +3352,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3288,7 +3398,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3333,7 +3444,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3377,7 +3489,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3421,7 +3534,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3465,7 +3579,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3509,7 +3624,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3553,7 +3669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3597,9 +3714,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3663,9 +3782,11 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3715,9 +3836,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -3860,6 +3983,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -3907,9 +4038,11 @@ "Germany West Central", "Norway East", "Australia East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -4052,6 +4185,14 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] @@ -4069,14 +4210,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8911/providers/Microsoft.Compute/availabilitySets/test-aset4156?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8911/providers/Microsoft.Compute/availabilitySets/test-aset4156?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "Request-Id": "|281dd4eb-411af037d68e2542.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6dd161e33b0c31e9c66c2bbfb94af432", "x-ms-return-client-request-id": "true" }, @@ -4096,7 +4238,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 19 May 2021 19:01:35 GMT", + "Date": "Wed, 16 Jun 2021 00:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4106,11 +4248,11 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-client-request-id": "6dd161e33b0c31e9c66c2bbfb94af432", - "x-ms-correlation-request-id": "604d9013-9a58-43fa-b6d7-d5ad5c0e370c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1192", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "ea4ffaf6-d0e4-4dec-ab27-594511a8abaa", - "x-ms-routing-request-id": "WESTUS2:20210519T190135Z:604d9013-9a58-43fa-b6d7-d5ad5c0e370c" + "x-ms-correlation-request-id": "bede20d2-fb13-4fa8-b724-ec2b1b3c79e9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1130", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "e9bd5add-9fac-4412-b8d3-749dde2fbe5b", + "x-ms-routing-request-id": "WESTUS2:20210616T000634Z:bede20d2-fb13-4fa8-b724-ec2b1b3c79e9" }, "ResponseBody": [ "{\r\n", @@ -4137,7 +4279,8 @@ "Authorization": "Sanitized", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-3e704abf1e37864d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ef6641382aceec6b2cae76431ae2d3db", "x-ms-return-client-request-id": "true" }, @@ -4151,17 +4294,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:35 GMT", + "Date": "Wed, 16 Jun 2021 00:06:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cd0f2cc6-42e4-4d98-a080-220eb87a1476", + "x-ms-correlation-request-id": "0e0177d0-c3bd-41e6-a8b8-2fd404b9d491", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "cd0f2cc6-42e4-4d98-a080-220eb87a1476", - "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:cd0f2cc6-42e4-4d98-a080-220eb87a1476" + "x-ms-request-id": "0e0177d0-c3bd-41e6-a8b8-2fd404b9d491", + "x-ms-routing-request-id": "WESTUS2:20210616T000635Z:0e0177d0-c3bd-41e6-a8b8-2fd404b9d491" }, "ResponseBody": [] }, @@ -4170,7 +4313,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7787ab7105e4e864947d0cb90767b70a", "x-ms-return-client-request-id": "true" }, @@ -4179,17 +4323,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:35 GMT", + "Date": "Wed, 16 Jun 2021 00:06:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0799ff58-fde5-4d92-a318-db434af92752", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "0799ff58-fde5-4d92-a318-db434af92752", - "x-ms-routing-request-id": "WESTUS2:20210519T190136Z:0799ff58-fde5-4d92-a318-db434af92752" + "x-ms-correlation-request-id": "6ac4127c-2c60-48fe-9d70-0bceabdc7293", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "6ac4127c-2c60-48fe-9d70-0bceabdc7293", + "x-ms-routing-request-id": "WESTUS2:20210616T000635Z:6ac4127c-2c60-48fe-9d70-0bceabdc7293" }, "ResponseBody": [] }, @@ -4198,7 +4342,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-b494211ce989c840-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6af8e54ed0dc28033b0138cdaa807274", "x-ms-return-client-request-id": "true" }, @@ -4207,17 +4352,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:36 GMT", + "Date": "Wed, 16 Jun 2021 00:06:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7d09bdc2-0591-422e-b566-be31a061a3a3", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "7d09bdc2-0591-422e-b566-be31a061a3a3", - "x-ms-routing-request-id": "WESTUS2:20210519T190137Z:7d09bdc2-0591-422e-b566-be31a061a3a3" + "x-ms-correlation-request-id": "6d1e71e3-f1b6-4a7e-8e60-203fe79f1281", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "6d1e71e3-f1b6-4a7e-8e60-203fe79f1281", + "x-ms-routing-request-id": "WESTUS2:20210616T000636Z:6d1e71e3-f1b6-4a7e-8e60-203fe79f1281" }, "ResponseBody": [] }, @@ -4226,7 +4371,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6ed1f5125b5b33f7c77f95fe024c5d4f", "x-ms-return-client-request-id": "true" }, @@ -4235,17 +4381,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:37 GMT", + "Date": "Wed, 16 Jun 2021 00:06:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c773ddb9-a405-4e1b-81c4-e74405c0250f", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "c773ddb9-a405-4e1b-81c4-e74405c0250f", - "x-ms-routing-request-id": "WESTUS2:20210519T190138Z:c773ddb9-a405-4e1b-81c4-e74405c0250f" + "x-ms-correlation-request-id": "1fea2f53-b0ce-4f02-a6f5-56fca9594805", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "1fea2f53-b0ce-4f02-a6f5-56fca9594805", + "x-ms-routing-request-id": "WESTUS2:20210616T000637Z:1fea2f53-b0ce-4f02-a6f5-56fca9594805" }, "ResponseBody": [] }, @@ -4254,7 +4400,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "949c764932c0a0a5a75e3ce2cc963e14", "x-ms-return-client-request-id": "true" }, @@ -4263,17 +4410,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:38 GMT", + "Date": "Wed, 16 Jun 2021 00:06:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d2235266-3cce-44c8-bf0f-fdf50c41bb0d", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "d2235266-3cce-44c8-bf0f-fdf50c41bb0d", - "x-ms-routing-request-id": "WESTUS2:20210519T190139Z:d2235266-3cce-44c8-bf0f-fdf50c41bb0d" + "x-ms-correlation-request-id": "3ae768d6-1fe2-4433-bb13-ccd6513a76ea", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "3ae768d6-1fe2-4433-bb13-ccd6513a76ea", + "x-ms-routing-request-id": "WESTUS2:20210616T000638Z:3ae768d6-1fe2-4433-bb13-ccd6513a76ea" }, "ResponseBody": [] }, @@ -4282,7 +4429,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "12a7980b4895f3aeeec4a25d3b0525ef", "x-ms-return-client-request-id": "true" }, @@ -4291,17 +4439,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:39 GMT", + "Date": "Wed, 16 Jun 2021 00:06:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "64379dfa-73e8-4e7e-b899-f9b3b204c19c", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "64379dfa-73e8-4e7e-b899-f9b3b204c19c", - "x-ms-routing-request-id": "WESTUS2:20210519T190140Z:64379dfa-73e8-4e7e-b899-f9b3b204c19c" + "x-ms-correlation-request-id": "ab8d4b08-87ab-4903-a3df-ee24173d00dc", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "ab8d4b08-87ab-4903-a3df-ee24173d00dc", + "x-ms-routing-request-id": "WESTUS2:20210616T000639Z:ab8d4b08-87ab-4903-a3df-ee24173d00dc" }, "ResponseBody": [] }, @@ -4310,7 +4458,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3484e9a4dde4dfb34f31c7fd1f146631", "x-ms-return-client-request-id": "true" }, @@ -4319,17 +4468,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:40 GMT", + "Date": "Wed, 16 Jun 2021 00:06:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e", - "x-ms-routing-request-id": "WESTUS2:20210519T190141Z:49c8b5c0-ef1e-4f47-8cf5-685e8f79c53e" + "x-ms-correlation-request-id": "0ea84204-d8ec-48d5-822f-c26dac00639f", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "0ea84204-d8ec-48d5-822f-c26dac00639f", + "x-ms-routing-request-id": "WESTUS2:20210616T000640Z:0ea84204-d8ec-48d5-822f-c26dac00639f" }, "ResponseBody": [] }, @@ -4338,7 +4487,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6af281404aa401b9c7a9a6fb8f4865a2", "x-ms-return-client-request-id": "true" }, @@ -4347,17 +4497,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:41 GMT", + "Date": "Wed, 16 Jun 2021 00:06:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "809e6ea0-a9a1-487a-92a7-67d433ef9871", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "809e6ea0-a9a1-487a-92a7-67d433ef9871", - "x-ms-routing-request-id": "WESTUS2:20210519T190142Z:809e6ea0-a9a1-487a-92a7-67d433ef9871" + "x-ms-correlation-request-id": "626beb17-d4e3-4c51-bbd3-ac9b6e318e80", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "626beb17-d4e3-4c51-bbd3-ac9b6e318e80", + "x-ms-routing-request-id": "WESTUS2:20210616T000641Z:626beb17-d4e3-4c51-bbd3-ac9b6e318e80" }, "ResponseBody": [] }, @@ -4366,7 +4516,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e33e4c380a112d2fe5c7c26480b1d3d9", "x-ms-return-client-request-id": "true" }, @@ -4375,17 +4526,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:42 GMT", + "Date": "Wed, 16 Jun 2021 00:06:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1247bfcc-7dcb-448e-acd6-969b161efccd", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "1247bfcc-7dcb-448e-acd6-969b161efccd", - "x-ms-routing-request-id": "WESTUS2:20210519T190143Z:1247bfcc-7dcb-448e-acd6-969b161efccd" + "x-ms-correlation-request-id": "ca849d3f-6d2d-40dc-911a-429bdf4e23f6", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ca849d3f-6d2d-40dc-911a-429bdf4e23f6", + "x-ms-routing-request-id": "WESTUS2:20210616T000642Z:ca849d3f-6d2d-40dc-911a-429bdf4e23f6" }, "ResponseBody": [] }, @@ -4394,7 +4545,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba1c715ebb12594a30836c3b37b75007", "x-ms-return-client-request-id": "true" }, @@ -4403,17 +4555,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:43 GMT", + "Date": "Wed, 16 Jun 2021 00:06:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e287efc2-e337-4269-9c03-2836da31db58", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "e287efc2-e337-4269-9c03-2836da31db58", - "x-ms-routing-request-id": "WESTUS2:20210519T190144Z:e287efc2-e337-4269-9c03-2836da31db58" + "x-ms-correlation-request-id": "0e114613-0a41-417e-a6f5-f0f37228d1c4", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "0e114613-0a41-417e-a6f5-f0f37228d1c4", + "x-ms-routing-request-id": "WESTUS2:20210616T000643Z:0e114613-0a41-417e-a6f5-f0f37228d1c4" }, "ResponseBody": [] }, @@ -4422,7 +4574,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d2c424cb82d5361f51c585dd87548016", "x-ms-return-client-request-id": "true" }, @@ -4431,17 +4584,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:44 GMT", + "Date": "Wed, 16 Jun 2021 00:06:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "22b46db3-8f82-493a-b431-256d9a892bf1", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "22b46db3-8f82-493a-b431-256d9a892bf1", - "x-ms-routing-request-id": "WESTUS2:20210519T190145Z:22b46db3-8f82-493a-b431-256d9a892bf1" + "x-ms-correlation-request-id": "eeebf842-2e4a-48a8-a8c9-dacfeeaac35e", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "eeebf842-2e4a-48a8-a8c9-dacfeeaac35e", + "x-ms-routing-request-id": "WESTUS2:20210616T000644Z:eeebf842-2e4a-48a8-a8c9-dacfeeaac35e" }, "ResponseBody": [] }, @@ -4450,7 +4603,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1d9dccd5ab2c7d8f01e5b38e9df3f62d", "x-ms-return-client-request-id": "true" }, @@ -4459,17 +4613,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:45 GMT", + "Date": "Wed, 16 Jun 2021 00:06:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6fad4075-cfe2-4747-8dbe-d741b2136b9b", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "6fad4075-cfe2-4747-8dbe-d741b2136b9b", - "x-ms-routing-request-id": "WESTUS2:20210519T190146Z:6fad4075-cfe2-4747-8dbe-d741b2136b9b" + "x-ms-correlation-request-id": "524af4ba-651b-4f8f-b0c3-d4a284dfd61c", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "524af4ba-651b-4f8f-b0c3-d4a284dfd61c", + "x-ms-routing-request-id": "WESTUS2:20210616T000645Z:524af4ba-651b-4f8f-b0c3-d4a284dfd61c" }, "ResponseBody": [] }, @@ -4478,7 +4632,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c99bb7700eddb0352e5684c366dd1db", "x-ms-return-client-request-id": "true" }, @@ -4487,17 +4642,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:46 GMT", + "Date": "Wed, 16 Jun 2021 00:06:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "142c0e81-10c3-4612-8161-a61ec98c3744", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "142c0e81-10c3-4612-8161-a61ec98c3744", - "x-ms-routing-request-id": "WESTUS2:20210519T190147Z:142c0e81-10c3-4612-8161-a61ec98c3744" + "x-ms-correlation-request-id": "10616dec-4596-43ff-a0aa-469bed2997af", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "10616dec-4596-43ff-a0aa-469bed2997af", + "x-ms-routing-request-id": "WESTUS2:20210616T000646Z:10616dec-4596-43ff-a0aa-469bed2997af" }, "ResponseBody": [] }, @@ -4506,7 +4661,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "6a665603321a20db9546d1f0cf90985d", "x-ms-return-client-request-id": "true" }, @@ -4515,17 +4671,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:47 GMT", + "Date": "Wed, 16 Jun 2021 00:06:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "19e4881e-f284-4d99-84fa-c533f5fc41d8", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "19e4881e-f284-4d99-84fa-c533f5fc41d8", - "x-ms-routing-request-id": "WESTUS2:20210519T190148Z:19e4881e-f284-4d99-84fa-c533f5fc41d8" + "x-ms-correlation-request-id": "552f7f26-3e2e-4a5c-8f78-db876c5c2469", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "552f7f26-3e2e-4a5c-8f78-db876c5c2469", + "x-ms-routing-request-id": "WESTUS2:20210616T000647Z:552f7f26-3e2e-4a5c-8f78-db876c5c2469" }, "ResponseBody": [] }, @@ -4534,7 +4690,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cc6657cf24bad428c9c2cb4642424693", "x-ms-return-client-request-id": "true" }, @@ -4543,17 +4700,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:48 GMT", + "Date": "Wed, 16 Jun 2021 00:06:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea", - "x-ms-routing-request-id": "WESTUS2:20210519T190149Z:9e7c0a00-a2bd-4b0a-8e7e-1bca70ea05ea" + "x-ms-correlation-request-id": "536172d2-95ba-445e-be88-03f99ae51a9d", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "536172d2-95ba-445e-be88-03f99ae51a9d", + "x-ms-routing-request-id": "WESTUS2:20210616T000648Z:536172d2-95ba-445e-be88-03f99ae51a9d" }, "ResponseBody": [] }, @@ -4562,7 +4719,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "478bd7138b8d4413e078c6a62f120bc2", "x-ms-return-client-request-id": "true" }, @@ -4571,17 +4729,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:49 GMT", + "Date": "Wed, 16 Jun 2021 00:06:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "adf589be-d119-4ec0-b52c-88c8e8858a74", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "adf589be-d119-4ec0-b52c-88c8e8858a74", - "x-ms-routing-request-id": "WESTUS2:20210519T190150Z:adf589be-d119-4ec0-b52c-88c8e8858a74" + "x-ms-correlation-request-id": "7adae386-ebe4-4ddd-a81d-4ef1e82ac5f5", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "7adae386-ebe4-4ddd-a81d-4ef1e82ac5f5", + "x-ms-routing-request-id": "WESTUS2:20210616T000649Z:7adae386-ebe4-4ddd-a81d-4ef1e82ac5f5" }, "ResponseBody": [] }, @@ -4590,7 +4748,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "de7d0a4c0407df212d91a1576794de52", "x-ms-return-client-request-id": "true" }, @@ -4599,17 +4758,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:50 GMT", + "Date": "Wed, 16 Jun 2021 00:06:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "fce3e3ef-0bb3-4a31-a72e-97a0199397ac", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "fce3e3ef-0bb3-4a31-a72e-97a0199397ac", - "x-ms-routing-request-id": "WESTUS2:20210519T190151Z:fce3e3ef-0bb3-4a31-a72e-97a0199397ac" + "x-ms-correlation-request-id": "6891e9c5-7a57-47ca-8a4e-db96596ce72d", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "6891e9c5-7a57-47ca-8a4e-db96596ce72d", + "x-ms-routing-request-id": "WESTUS2:20210616T000650Z:6891e9c5-7a57-47ca-8a4e-db96596ce72d" }, "ResponseBody": [] }, @@ -4618,7 +4777,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7dd3d00510443d04421ec425d82a4b6", "x-ms-return-client-request-id": "true" }, @@ -4627,17 +4787,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:51 GMT", + "Date": "Wed, 16 Jun 2021 00:06:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f5cf5378-37ef-4161-828e-7769a657198e", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "f5cf5378-37ef-4161-828e-7769a657198e", - "x-ms-routing-request-id": "WESTUS2:20210519T190152Z:f5cf5378-37ef-4161-828e-7769a657198e" + "x-ms-correlation-request-id": "5f8f1bf0-e275-4cfd-9a71-c9ad2fc0bf98", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "5f8f1bf0-e275-4cfd-9a71-c9ad2fc0bf98", + "x-ms-routing-request-id": "WESTUS2:20210616T000651Z:5f8f1bf0-e275-4cfd-9a71-c9ad2fc0bf98" }, "ResponseBody": [] }, @@ -4646,7 +4806,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "37f908b768c40e8cb6ac19fceabbdd4b", "x-ms-return-client-request-id": "true" }, @@ -4655,17 +4816,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:53 GMT", + "Date": "Wed, 16 Jun 2021 00:06:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4", - "x-ms-routing-request-id": "WESTUS2:20210519T190153Z:bf9e97f5-0c19-41bd-8e98-16fb4cb5aee4" + "x-ms-correlation-request-id": "eeba5b79-4221-47d4-b8d6-8818c5ea2e8e", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "eeba5b79-4221-47d4-b8d6-8818c5ea2e8e", + "x-ms-routing-request-id": "WESTUS2:20210616T000652Z:eeba5b79-4221-47d4-b8d6-8818c5ea2e8e" }, "ResponseBody": [] }, @@ -4674,7 +4835,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f2a6749a1335fbbd3a3a99e618de81aa", "x-ms-return-client-request-id": "true" }, @@ -4683,17 +4845,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:54 GMT", + "Date": "Wed, 16 Jun 2021 00:06:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "96e61da1-d5d7-4a4a-b943-fc3d0cf4243c", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "96e61da1-d5d7-4a4a-b943-fc3d0cf4243c", - "x-ms-routing-request-id": "WESTUS2:20210519T190154Z:96e61da1-d5d7-4a4a-b943-fc3d0cf4243c" + "x-ms-correlation-request-id": "9188daa1-9e27-492e-8a52-c794cab8e8e8", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "9188daa1-9e27-492e-8a52-c794cab8e8e8", + "x-ms-routing-request-id": "WESTUS2:20210616T000653Z:9188daa1-9e27-492e-8a52-c794cab8e8e8" }, "ResponseBody": [] }, @@ -4702,7 +4864,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5ea0eaeca69b978db1ce415837d35889", "x-ms-return-client-request-id": "true" }, @@ -4711,17 +4874,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:55 GMT", + "Date": "Wed, 16 Jun 2021 00:06:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6e0f516c-37e4-4a6d-8849-7b74d8b58e1a", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "6e0f516c-37e4-4a6d-8849-7b74d8b58e1a", - "x-ms-routing-request-id": "WESTUS2:20210519T190155Z:6e0f516c-37e4-4a6d-8849-7b74d8b58e1a" + "x-ms-correlation-request-id": "07212920-785f-49e9-9493-bc37cb71eda0", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "07212920-785f-49e9-9493-bc37cb71eda0", + "x-ms-routing-request-id": "WESTUS2:20210616T000654Z:07212920-785f-49e9-9493-bc37cb71eda0" }, "ResponseBody": [] }, @@ -4730,7 +4893,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e8a7a044b2dca3804bfdfc8acea6f5d7", "x-ms-return-client-request-id": "true" }, @@ -4739,17 +4903,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:56 GMT", + "Date": "Wed, 16 Jun 2021 00:06:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "818c2b96-27b5-4938-8bcf-8b15294bc6e3", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "818c2b96-27b5-4938-8bcf-8b15294bc6e3", - "x-ms-routing-request-id": "WESTUS2:20210519T190156Z:818c2b96-27b5-4938-8bcf-8b15294bc6e3" + "x-ms-correlation-request-id": "a78493d0-40e9-45e5-b86a-572a3748f7ea", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "a78493d0-40e9-45e5-b86a-572a3748f7ea", + "x-ms-routing-request-id": "WESTUS2:20210616T000655Z:a78493d0-40e9-45e5-b86a-572a3748f7ea" }, "ResponseBody": [] }, @@ -4758,7 +4922,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ff0f6e2a7e1bf3b0e70e4066d265c366", "x-ms-return-client-request-id": "true" }, @@ -4767,17 +4932,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:57 GMT", + "Date": "Wed, 16 Jun 2021 00:06:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "184261fd-1604-4da1-8832-ef18e0b3d667", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "184261fd-1604-4da1-8832-ef18e0b3d667", - "x-ms-routing-request-id": "WESTUS2:20210519T190157Z:184261fd-1604-4da1-8832-ef18e0b3d667" + "x-ms-correlation-request-id": "c750138e-1a34-4d81-9dc1-8a49454772a2", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "c750138e-1a34-4d81-9dc1-8a49454772a2", + "x-ms-routing-request-id": "WESTUS2:20210616T000656Z:c750138e-1a34-4d81-9dc1-8a49454772a2" }, "ResponseBody": [] }, @@ -4786,7 +4951,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "78a210e299373ace6afc139da902c90b", "x-ms-return-client-request-id": "true" }, @@ -4795,17 +4961,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:58 GMT", + "Date": "Wed, 16 Jun 2021 00:06:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ad79c8d3-d17b-4c6e-9abe-d9455d4760a6", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "ad79c8d3-d17b-4c6e-9abe-d9455d4760a6", - "x-ms-routing-request-id": "WESTUS2:20210519T190158Z:ad79c8d3-d17b-4c6e-9abe-d9455d4760a6" + "x-ms-correlation-request-id": "80f85518-b3de-4a2f-a4e3-835628e27d74", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "80f85518-b3de-4a2f-a4e3-835628e27d74", + "x-ms-routing-request-id": "WESTUS2:20210616T000657Z:80f85518-b3de-4a2f-a4e3-835628e27d74" }, "ResponseBody": [] }, @@ -4814,7 +4980,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c82d6ad858c4c56df0b300cd7119d1e6", "x-ms-return-client-request-id": "true" }, @@ -4823,17 +4990,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:01:59 GMT", + "Date": "Wed, 16 Jun 2021 00:06:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7d3a6e78-17a7-4b84-950b-3fee2a4e506a", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "7d3a6e78-17a7-4b84-950b-3fee2a4e506a", - "x-ms-routing-request-id": "WESTUS2:20210519T190159Z:7d3a6e78-17a7-4b84-950b-3fee2a4e506a" + "x-ms-correlation-request-id": "2df335d4-0119-45f7-b69d-af7bbac68788", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "2df335d4-0119-45f7-b69d-af7bbac68788", + "x-ms-routing-request-id": "WESTUS2:20210616T000658Z:2df335d4-0119-45f7-b69d-af7bbac68788" }, "ResponseBody": [] }, @@ -4842,7 +5009,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bda7953a7d0391a0a0d5951f6b124ae4", "x-ms-return-client-request-id": "true" }, @@ -4851,17 +5019,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:00 GMT", + "Date": "Wed, 16 Jun 2021 00:06:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dcfcf09f-c205-4b16-888b-b739116b2018", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "dcfcf09f-c205-4b16-888b-b739116b2018", - "x-ms-routing-request-id": "WESTUS2:20210519T190200Z:dcfcf09f-c205-4b16-888b-b739116b2018" + "x-ms-correlation-request-id": "6d9eef39-584e-4b2f-a6ae-7a2fbcc75b31", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "6d9eef39-584e-4b2f-a6ae-7a2fbcc75b31", + "x-ms-routing-request-id": "WESTUS2:20210616T000659Z:6d9eef39-584e-4b2f-a6ae-7a2fbcc75b31" }, "ResponseBody": [] }, @@ -4870,7 +5038,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "688d3545fb3789a2a3dc87839801c850", "x-ms-return-client-request-id": "true" }, @@ -4879,17 +5048,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:01 GMT", + "Date": "Wed, 16 Jun 2021 00:07:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1fd9e652-434e-4c52-a46f-21d2f4f4da29", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "1fd9e652-434e-4c52-a46f-21d2f4f4da29", - "x-ms-routing-request-id": "WESTUS2:20210519T190201Z:1fd9e652-434e-4c52-a46f-21d2f4f4da29" + "x-ms-correlation-request-id": "93c9801f-2e43-454c-bc2c-bd5326bfa85f", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "93c9801f-2e43-454c-bc2c-bd5326bfa85f", + "x-ms-routing-request-id": "WESTUS2:20210616T000700Z:93c9801f-2e43-454c-bc2c-bd5326bfa85f" }, "ResponseBody": [] }, @@ -4898,7 +5067,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "14632c2a0b5b5b07c99c28efc34e5add", "x-ms-return-client-request-id": "true" }, @@ -4907,17 +5077,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:02 GMT", + "Date": "Wed, 16 Jun 2021 00:07:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "46aaae6c-ba7b-4f87-bbe2-9634f7290009", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "46aaae6c-ba7b-4f87-bbe2-9634f7290009", - "x-ms-routing-request-id": "WESTUS2:20210519T190202Z:46aaae6c-ba7b-4f87-bbe2-9634f7290009" + "x-ms-correlation-request-id": "274bd2a1-be58-49e1-8800-52968e2d7d4e", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "274bd2a1-be58-49e1-8800-52968e2d7d4e", + "x-ms-routing-request-id": "WESTUS2:20210616T000702Z:274bd2a1-be58-49e1-8800-52968e2d7d4e" }, "ResponseBody": [] }, @@ -4926,7 +5096,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3c881c69698c3faef31e1a27f61cf89e", "x-ms-return-client-request-id": "true" }, @@ -4935,17 +5106,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:03 GMT", + "Date": "Wed, 16 Jun 2021 00:07:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "850f5ccf-8190-4b37-97dc-8494fe1c5099", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "850f5ccf-8190-4b37-97dc-8494fe1c5099", - "x-ms-routing-request-id": "WESTUS2:20210519T190203Z:850f5ccf-8190-4b37-97dc-8494fe1c5099" + "x-ms-correlation-request-id": "35d2505f-5c81-459c-8778-b9e354e118c4", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "35d2505f-5c81-459c-8778-b9e354e118c4", + "x-ms-routing-request-id": "WESTUS2:20210616T000703Z:35d2505f-5c81-459c-8778-b9e354e118c4" }, "ResponseBody": [] }, @@ -4954,7 +5125,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3ef4450c36af39892e329e9bd2b2c655", "x-ms-return-client-request-id": "true" }, @@ -4963,17 +5135,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:04 GMT", + "Date": "Wed, 16 Jun 2021 00:07:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e0bb3515-cad1-4eac-8ecf-c7aff8199621", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "e0bb3515-cad1-4eac-8ecf-c7aff8199621", - "x-ms-routing-request-id": "WESTUS2:20210519T190205Z:e0bb3515-cad1-4eac-8ecf-c7aff8199621" + "x-ms-correlation-request-id": "f7979e55-0caa-4324-ac4e-f3a3b11ce22f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "f7979e55-0caa-4324-ac4e-f3a3b11ce22f", + "x-ms-routing-request-id": "WESTUS2:20210616T000704Z:f7979e55-0caa-4324-ac4e-f3a3b11ce22f" }, "ResponseBody": [] }, @@ -4982,7 +5154,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7c1aaa828c78c1c37d24203cf1df65ad", "x-ms-return-client-request-id": "true" }, @@ -4991,17 +5164,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:05 GMT", + "Date": "Wed, 16 Jun 2021 00:07:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2c2b15b5-7eaf-4a19-a094-8704a55d2eac", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "2c2b15b5-7eaf-4a19-a094-8704a55d2eac", - "x-ms-routing-request-id": "WESTUS2:20210519T190206Z:2c2b15b5-7eaf-4a19-a094-8704a55d2eac" + "x-ms-correlation-request-id": "30d610ed-fe7f-4f4c-afe4-d2f62c59c0d6", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "30d610ed-fe7f-4f4c-afe4-d2f62c59c0d6", + "x-ms-routing-request-id": "WESTUS2:20210616T000705Z:30d610ed-fe7f-4f4c-afe4-d2f62c59c0d6" }, "ResponseBody": [] }, @@ -5010,7 +5183,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7de289a31b59332d924f0d59cb136c40", "x-ms-return-client-request-id": "true" }, @@ -5019,17 +5193,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:06 GMT", + "Date": "Wed, 16 Jun 2021 00:07:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91", - "x-ms-routing-request-id": "WESTUS2:20210519T190207Z:8bc70176-dbfd-4f11-9ddf-7f5ab7b31b91" + "x-ms-correlation-request-id": "da37e5c6-595c-4cf7-b2e6-3f86b6da9720", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "da37e5c6-595c-4cf7-b2e6-3f86b6da9720", + "x-ms-routing-request-id": "WESTUS2:20210616T000706Z:da37e5c6-595c-4cf7-b2e6-3f86b6da9720" }, "ResponseBody": [] }, @@ -5038,7 +5212,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4ba5c4577c0280268132c08b154c474e", "x-ms-return-client-request-id": "true" }, @@ -5047,17 +5222,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:07 GMT", + "Date": "Wed, 16 Jun 2021 00:07:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf", - "x-ms-routing-request-id": "WESTUS2:20210519T190208Z:e3a4f93f-70d8-402b-b5ee-c9ddeb9d7baf" + "x-ms-correlation-request-id": "be64d704-2385-485d-86ac-93fb999ece9f", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "be64d704-2385-485d-86ac-93fb999ece9f", + "x-ms-routing-request-id": "WESTUS2:20210616T000707Z:be64d704-2385-485d-86ac-93fb999ece9f" }, "ResponseBody": [] }, @@ -5066,7 +5241,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48f8f0cd49cf66fb7ce6e9297e6af66a", "x-ms-return-client-request-id": "true" }, @@ -5075,17 +5251,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:08 GMT", + "Date": "Wed, 16 Jun 2021 00:07:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e4ccd62d-07e0-40c1-9746-19b530e73b47", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "e4ccd62d-07e0-40c1-9746-19b530e73b47", - "x-ms-routing-request-id": "WESTUS2:20210519T190209Z:e4ccd62d-07e0-40c1-9746-19b530e73b47" + "x-ms-correlation-request-id": "c88b60e9-981e-471e-8d0b-b7999229e4fc", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "c88b60e9-981e-471e-8d0b-b7999229e4fc", + "x-ms-routing-request-id": "WESTUS2:20210616T000708Z:c88b60e9-981e-471e-8d0b-b7999229e4fc" }, "ResponseBody": [] }, @@ -5094,7 +5270,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2de5dfb7193a26aa6362fc275aa21d46", "x-ms-return-client-request-id": "true" }, @@ -5103,17 +5280,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:09 GMT", + "Date": "Wed, 16 Jun 2021 00:07:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6e4ff7f8-8bba-4073-87f4-666e3c79397c", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "6e4ff7f8-8bba-4073-87f4-666e3c79397c", - "x-ms-routing-request-id": "WESTUS2:20210519T190210Z:6e4ff7f8-8bba-4073-87f4-666e3c79397c" + "x-ms-correlation-request-id": "758c0d91-3ecd-4ecc-b8bb-dc4a192d74dc", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "758c0d91-3ecd-4ecc-b8bb-dc4a192d74dc", + "x-ms-routing-request-id": "WESTUS2:20210616T000709Z:758c0d91-3ecd-4ecc-b8bb-dc4a192d74dc" }, "ResponseBody": [] }, @@ -5122,7 +5299,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da8cbe08241b0e71c93ecf1b93fc0217", "x-ms-return-client-request-id": "true" }, @@ -5131,17 +5309,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:10 GMT", + "Date": "Wed, 16 Jun 2021 00:07:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5aefb44a-3787-4fa7-97ad-608f89d31697", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "5aefb44a-3787-4fa7-97ad-608f89d31697", - "x-ms-routing-request-id": "WESTUS2:20210519T190211Z:5aefb44a-3787-4fa7-97ad-608f89d31697" + "x-ms-correlation-request-id": "b0bae1e9-b622-46f7-af41-7c4e155d4872", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "b0bae1e9-b622-46f7-af41-7c4e155d4872", + "x-ms-routing-request-id": "WESTUS2:20210616T000710Z:b0bae1e9-b622-46f7-af41-7c4e155d4872" }, "ResponseBody": [] }, @@ -5150,7 +5328,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "36d4563c1a66b41445d1e46d4dd40cda", "x-ms-return-client-request-id": "true" }, @@ -5159,17 +5338,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:11 GMT", + "Date": "Wed, 16 Jun 2021 00:07:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e5c20f5a-4d6a-41b0-884c-d768d69e1d00", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "e5c20f5a-4d6a-41b0-884c-d768d69e1d00", - "x-ms-routing-request-id": "WESTUS2:20210519T190212Z:e5c20f5a-4d6a-41b0-884c-d768d69e1d00" + "x-ms-correlation-request-id": "94285d87-d8c8-452f-80da-070ed24b1632", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "94285d87-d8c8-452f-80da-070ed24b1632", + "x-ms-routing-request-id": "WESTUS2:20210616T000711Z:94285d87-d8c8-452f-80da-070ed24b1632" }, "ResponseBody": [] }, @@ -5178,7 +5357,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bf20a2c81bde934e6ed763fb498f9367", "x-ms-return-client-request-id": "true" }, @@ -5187,17 +5367,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:13 GMT", + "Date": "Wed, 16 Jun 2021 00:07:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "66867bf0-37dc-40eb-9fc3-7fac57fcd31b", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "66867bf0-37dc-40eb-9fc3-7fac57fcd31b", - "x-ms-routing-request-id": "WESTUS2:20210519T190213Z:66867bf0-37dc-40eb-9fc3-7fac57fcd31b" + "x-ms-correlation-request-id": "cf146dc8-225a-4f37-878f-eee5501f72f6", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "cf146dc8-225a-4f37-878f-eee5501f72f6", + "x-ms-routing-request-id": "WESTUS2:20210616T000712Z:cf146dc8-225a-4f37-878f-eee5501f72f6" }, "ResponseBody": [] }, @@ -5206,7 +5386,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03eae560e7cdeedfaad7944a3f03c1f5", "x-ms-return-client-request-id": "true" }, @@ -5215,17 +5396,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:14 GMT", + "Date": "Wed, 16 Jun 2021 00:07:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ca07d24e-9755-41b8-9cd8-9452b8e3af85", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "ca07d24e-9755-41b8-9cd8-9452b8e3af85", - "x-ms-routing-request-id": "WESTUS2:20210519T190214Z:ca07d24e-9755-41b8-9cd8-9452b8e3af85" + "x-ms-correlation-request-id": "628dae4d-c4cf-4c85-920f-c7e595a6dd7f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "628dae4d-c4cf-4c85-920f-c7e595a6dd7f", + "x-ms-routing-request-id": "WESTUS2:20210616T000713Z:628dae4d-c4cf-4c85-920f-c7e595a6dd7f" }, "ResponseBody": [] }, @@ -5234,7 +5415,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f052f43242dc21380841c78fb6196ab6", "x-ms-return-client-request-id": "true" }, @@ -5243,17 +5425,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:15 GMT", + "Date": "Wed, 16 Jun 2021 00:07:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e4999d76-42e8-493c-9ed6-02a36e41f8d9", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "e4999d76-42e8-493c-9ed6-02a36e41f8d9", - "x-ms-routing-request-id": "WESTUS2:20210519T190215Z:e4999d76-42e8-493c-9ed6-02a36e41f8d9" + "x-ms-correlation-request-id": "6116cd29-e861-4c61-a169-58e60152677d", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "6116cd29-e861-4c61-a169-58e60152677d", + "x-ms-routing-request-id": "WESTUS2:20210616T000714Z:6116cd29-e861-4c61-a169-58e60152677d" }, "ResponseBody": [] }, @@ -5262,7 +5444,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "670d7d3e08e9e10cc33215068604536b", "x-ms-return-client-request-id": "true" }, @@ -5271,17 +5454,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:16 GMT", + "Date": "Wed, 16 Jun 2021 00:07:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1e036e1c-d2cc-4872-89f8-f60398f3eab7", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "1e036e1c-d2cc-4872-89f8-f60398f3eab7", - "x-ms-routing-request-id": "WESTUS2:20210519T190216Z:1e036e1c-d2cc-4872-89f8-f60398f3eab7" + "x-ms-correlation-request-id": "8bfd01ba-3de0-4ff6-8a1a-0b2eacabdfe3", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "8bfd01ba-3de0-4ff6-8a1a-0b2eacabdfe3", + "x-ms-routing-request-id": "WESTUS2:20210616T000715Z:8bfd01ba-3de0-4ff6-8a1a-0b2eacabdfe3" }, "ResponseBody": [] }, @@ -5290,7 +5473,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "55c96d15a23c1d8bacc9fb8c1f4f3791", "x-ms-return-client-request-id": "true" }, @@ -5299,17 +5483,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:17 GMT", + "Date": "Wed, 16 Jun 2021 00:07:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "08fdce77-f78f-4d10-a9e3-9514014d8b89", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "08fdce77-f78f-4d10-a9e3-9514014d8b89", - "x-ms-routing-request-id": "WESTUS2:20210519T190217Z:08fdce77-f78f-4d10-a9e3-9514014d8b89" + "x-ms-correlation-request-id": "45eba5ab-3a01-4315-904d-cf71b277c1e3", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "45eba5ab-3a01-4315-904d-cf71b277c1e3", + "x-ms-routing-request-id": "WESTUS2:20210616T000716Z:45eba5ab-3a01-4315-904d-cf71b277c1e3" }, "ResponseBody": [] }, @@ -5318,7 +5502,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c20bdd6d59f5290be8712da92c329a03", "x-ms-return-client-request-id": "true" }, @@ -5327,17 +5512,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:18 GMT", + "Date": "Wed, 16 Jun 2021 00:07:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5", - "x-ms-routing-request-id": "WESTUS2:20210519T190218Z:a09cf6d1-adaa-4b0c-a9e1-5d66ba5196c5" + "x-ms-correlation-request-id": "17650cac-5cd1-4772-834a-b3581acc587c", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "17650cac-5cd1-4772-834a-b3581acc587c", + "x-ms-routing-request-id": "WESTUS2:20210616T000717Z:17650cac-5cd1-4772-834a-b3581acc587c" }, "ResponseBody": [] }, @@ -5346,7 +5531,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "48795ced154f9b7af2efbb200c7fc173", "x-ms-return-client-request-id": "true" }, @@ -5355,17 +5541,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:19 GMT", + "Date": "Wed, 16 Jun 2021 00:07:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "701cd53b-15f1-457f-b546-e749b2220e72", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "701cd53b-15f1-457f-b546-e749b2220e72", - "x-ms-routing-request-id": "WESTUS2:20210519T190219Z:701cd53b-15f1-457f-b546-e749b2220e72" + "x-ms-correlation-request-id": "e5dd4ce6-fece-482f-8c61-cf20c83bfde8", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "e5dd4ce6-fece-482f-8c61-cf20c83bfde8", + "x-ms-routing-request-id": "WESTUS2:20210616T000718Z:e5dd4ce6-fece-482f-8c61-cf20c83bfde8" }, "ResponseBody": [] }, @@ -5374,7 +5560,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a89884fb90f8bc75629f6cca74e1f17a", "x-ms-return-client-request-id": "true" }, @@ -5383,17 +5570,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:20 GMT", + "Date": "Wed, 16 Jun 2021 00:07:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0018f023-907e-4ff9-b7b1-15efc4dff6e7", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "0018f023-907e-4ff9-b7b1-15efc4dff6e7", - "x-ms-routing-request-id": "WESTUS2:20210519T190220Z:0018f023-907e-4ff9-b7b1-15efc4dff6e7" + "x-ms-correlation-request-id": "07d9bc0a-7cd3-44d5-a923-6a88eeb8f11f", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "07d9bc0a-7cd3-44d5-a923-6a88eeb8f11f", + "x-ms-routing-request-id": "WESTUS2:20210616T000719Z:07d9bc0a-7cd3-44d5-a923-6a88eeb8f11f" }, "ResponseBody": [] }, @@ -5402,7 +5589,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c39ef72feed55841636fd0069deb1c68", "x-ms-return-client-request-id": "true" }, @@ -5411,17 +5599,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:21 GMT", + "Date": "Wed, 16 Jun 2021 00:07:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "99e5468c-5df0-4479-97be-c67d271c16af", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "99e5468c-5df0-4479-97be-c67d271c16af", - "x-ms-routing-request-id": "WESTUS2:20210519T190221Z:99e5468c-5df0-4479-97be-c67d271c16af" + "x-ms-correlation-request-id": "e8bcc62c-b5b6-4a6a-b3ea-fa0ad019b7d2", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "e8bcc62c-b5b6-4a6a-b3ea-fa0ad019b7d2", + "x-ms-routing-request-id": "WESTUS2:20210616T000720Z:e8bcc62c-b5b6-4a6a-b3ea-fa0ad019b7d2" }, "ResponseBody": [] }, @@ -5430,7 +5618,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7aebab0f1995d0ae7bde6b0a8af2710", "x-ms-return-client-request-id": "true" }, @@ -5439,17 +5628,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:22 GMT", + "Date": "Wed, 16 Jun 2021 00:07:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "37674e73-bd29-4ecc-b705-57961e246572", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "37674e73-bd29-4ecc-b705-57961e246572", - "x-ms-routing-request-id": "WESTUS2:20210519T190222Z:37674e73-bd29-4ecc-b705-57961e246572" + "x-ms-correlation-request-id": "99d12934-e01d-4fc2-ae5b-25257ac8a79d", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "99d12934-e01d-4fc2-ae5b-25257ac8a79d", + "x-ms-routing-request-id": "WESTUS2:20210616T000721Z:99d12934-e01d-4fc2-ae5b-25257ac8a79d" }, "ResponseBody": [] }, @@ -5458,7 +5647,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15f141fefee00c9d43404588c06f1e77", "x-ms-return-client-request-id": "true" }, @@ -5467,17 +5657,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:23 GMT", + "Date": "Wed, 16 Jun 2021 00:07:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e6dd28cf-f761-465a-af24-d578511c50bc", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-request-id": "e6dd28cf-f761-465a-af24-d578511c50bc", - "x-ms-routing-request-id": "WESTUS2:20210519T190223Z:e6dd28cf-f761-465a-af24-d578511c50bc" + "x-ms-correlation-request-id": "4ae43a24-2bd7-46ab-983d-4cb3990f4452", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "4ae43a24-2bd7-46ab-983d-4cb3990f4452", + "x-ms-routing-request-id": "WESTUS2:20210616T000722Z:4ae43a24-2bd7-46ab-983d-4cb3990f4452" }, "ResponseBody": [] }, @@ -5486,7 +5676,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ba1a038249333de0ec41db180890afb3", "x-ms-return-client-request-id": "true" }, @@ -5495,17 +5686,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:24 GMT", + "Date": "Wed, 16 Jun 2021 00:07:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d9ee24d6-04aa-4bc6-8422-d2a881315af0", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-request-id": "d9ee24d6-04aa-4bc6-8422-d2a881315af0", - "x-ms-routing-request-id": "WESTUS2:20210519T190224Z:d9ee24d6-04aa-4bc6-8422-d2a881315af0" + "x-ms-correlation-request-id": "d6547f80-8b83-4dcb-be69-9e854c85ee58", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "d6547f80-8b83-4dcb-be69-9e854c85ee58", + "x-ms-routing-request-id": "WESTUS2:20210616T000723Z:d6547f80-8b83-4dcb-be69-9e854c85ee58" }, "ResponseBody": [] }, @@ -5514,7 +5705,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5c07bf4807f9b1881ca26458ab829c78", "x-ms-return-client-request-id": "true" }, @@ -5523,17 +5715,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:25 GMT", + "Date": "Wed, 16 Jun 2021 00:07:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "57eff819-3767-4bbf-9ad9-7746c7f9db9f", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-request-id": "57eff819-3767-4bbf-9ad9-7746c7f9db9f", - "x-ms-routing-request-id": "WESTUS2:20210519T190225Z:57eff819-3767-4bbf-9ad9-7746c7f9db9f" + "x-ms-correlation-request-id": "ce4e2bde-a3f6-4a53-95c8-5d6cc379f798", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "ce4e2bde-a3f6-4a53-95c8-5d6cc379f798", + "x-ms-routing-request-id": "WESTUS2:20210616T000724Z:ce4e2bde-a3f6-4a53-95c8-5d6cc379f798" }, "ResponseBody": [] }, @@ -5542,7 +5734,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a42d6f9e6c95b4dd60b3289f228404b2", "x-ms-return-client-request-id": "true" }, @@ -5551,17 +5744,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:26 GMT", + "Date": "Wed, 16 Jun 2021 00:07:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cdaa79ba-b833-4b4b-940e-827920db8060", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-request-id": "cdaa79ba-b833-4b4b-940e-827920db8060", - "x-ms-routing-request-id": "WESTUS2:20210519T190226Z:cdaa79ba-b833-4b4b-940e-827920db8060" + "x-ms-correlation-request-id": "e04db7ba-af8e-44fe-8df5-c5d4461f6036", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "e04db7ba-af8e-44fe-8df5-c5d4461f6036", + "x-ms-routing-request-id": "WESTUS2:20210616T000725Z:e04db7ba-af8e-44fe-8df5-c5d4461f6036" }, "ResponseBody": [] }, @@ -5570,7 +5763,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "01409190c2677a7d7b689e90e588926a", "x-ms-return-client-request-id": "true" }, @@ -5579,17 +5773,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:27 GMT", + "Date": "Wed, 16 Jun 2021 00:07:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "510c6f96-8c0a-4633-b6c3-b6fd4511969b", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-request-id": "510c6f96-8c0a-4633-b6c3-b6fd4511969b", - "x-ms-routing-request-id": "WESTUS2:20210519T190227Z:510c6f96-8c0a-4633-b6c3-b6fd4511969b" + "x-ms-correlation-request-id": "3946c3ec-6b91-4bcf-ae62-5c6300ac16b8", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "3946c3ec-6b91-4bcf-ae62-5c6300ac16b8", + "x-ms-routing-request-id": "WESTUS2:20210616T000726Z:3946c3ec-6b91-4bcf-ae62-5c6300ac16b8" }, "ResponseBody": [] }, @@ -5598,7 +5792,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "987a63a40a62dc1ee153fb46dfe88e97", "x-ms-return-client-request-id": "true" }, @@ -5607,17 +5802,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:28 GMT", + "Date": "Wed, 16 Jun 2021 00:07:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "be7179fa-21d7-417f-83eb-0e5abe2b4a81", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-request-id": "be7179fa-21d7-417f-83eb-0e5abe2b4a81", - "x-ms-routing-request-id": "WESTUS2:20210519T190228Z:be7179fa-21d7-417f-83eb-0e5abe2b4a81" + "x-ms-correlation-request-id": "ef67e0ce-e55f-443b-8ea9-c4f231841513", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "ef67e0ce-e55f-443b-8ea9-c4f231841513", + "x-ms-routing-request-id": "WESTUS2:20210616T000727Z:ef67e0ce-e55f-443b-8ea9-c4f231841513" }, "ResponseBody": [] }, @@ -5626,7 +5821,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1ac7b19e9b42db10f2b2292ccd4ccfd8", "x-ms-return-client-request-id": "true" }, @@ -5635,17 +5831,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:29 GMT", + "Date": "Wed, 16 Jun 2021 00:07:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "823a5560-5cca-4773-81d6-56980437e0ce", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-request-id": "823a5560-5cca-4773-81d6-56980437e0ce", - "x-ms-routing-request-id": "WESTUS2:20210519T190229Z:823a5560-5cca-4773-81d6-56980437e0ce" + "x-ms-correlation-request-id": "68f6cee1-947d-4ddf-85b9-e6a602107164", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "68f6cee1-947d-4ddf-85b9-e6a602107164", + "x-ms-routing-request-id": "WESTUS2:20210616T000728Z:68f6cee1-947d-4ddf-85b9-e6a602107164" }, "ResponseBody": [] }, @@ -5654,7 +5850,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bffabd216b0a854f73631f13c7379b92", "x-ms-return-client-request-id": "true" }, @@ -5663,17 +5860,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:30 GMT", + "Date": "Wed, 16 Jun 2021 00:07:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "037c9d74-919a-4ccc-a4aa-1ba8ed675ec7", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-request-id": "037c9d74-919a-4ccc-a4aa-1ba8ed675ec7", - "x-ms-routing-request-id": "WESTUS2:20210519T190230Z:037c9d74-919a-4ccc-a4aa-1ba8ed675ec7" + "x-ms-correlation-request-id": "d3f82f91-1647-4f3b-b5fa-6b103c54bf2c", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "d3f82f91-1647-4f3b-b5fa-6b103c54bf2c", + "x-ms-routing-request-id": "WESTUS2:20210616T000729Z:d3f82f91-1647-4f3b-b5fa-6b103c54bf2c" }, "ResponseBody": [] }, @@ -5682,7 +5879,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "33f206d978c00828529ea6b0e1f10f94", "x-ms-return-client-request-id": "true" }, @@ -5691,17 +5889,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:31 GMT", + "Date": "Wed, 16 Jun 2021 00:07:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ed7bd376-4b24-4867-877c-03b5a7a3370a", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-request-id": "ed7bd376-4b24-4867-877c-03b5a7a3370a", - "x-ms-routing-request-id": "WESTUS2:20210519T190231Z:ed7bd376-4b24-4867-877c-03b5a7a3370a" + "x-ms-correlation-request-id": "11b7608c-29d0-4c43-9767-4427715639af", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "11b7608c-29d0-4c43-9767-4427715639af", + "x-ms-routing-request-id": "WESTUS2:20210616T000730Z:11b7608c-29d0-4c43-9767-4427715639af" }, "ResponseBody": [] }, @@ -5710,7 +5908,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22242384cfee328c6142a6de7bfc14bb", "x-ms-return-client-request-id": "true" }, @@ -5719,17 +5918,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:32 GMT", + "Date": "Wed, 16 Jun 2021 00:07:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dbb2c334-3e9f-4d34-aa53-b32e2adebd02", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-request-id": "dbb2c334-3e9f-4d34-aa53-b32e2adebd02", - "x-ms-routing-request-id": "WESTUS2:20210519T190232Z:dbb2c334-3e9f-4d34-aa53-b32e2adebd02" + "x-ms-correlation-request-id": "f1783f8e-a172-43a9-a1c9-fca3d07dd44e", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "f1783f8e-a172-43a9-a1c9-fca3d07dd44e", + "x-ms-routing-request-id": "WESTUS2:20210616T000731Z:f1783f8e-a172-43a9-a1c9-fca3d07dd44e" }, "ResponseBody": [] }, @@ -5738,7 +5937,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c65296179b5aa91894f16c6cc49fa381", "x-ms-return-client-request-id": "true" }, @@ -5747,17 +5947,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:33 GMT", + "Date": "Wed, 16 Jun 2021 00:07:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6b3ad44f-af77-4645-97f1-1ef830300545", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-request-id": "6b3ad44f-af77-4645-97f1-1ef830300545", - "x-ms-routing-request-id": "WESTUS2:20210519T190233Z:6b3ad44f-af77-4645-97f1-1ef830300545" + "x-ms-correlation-request-id": "76c5abb1-6389-4194-bcf3-a238515ee6d5", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "76c5abb1-6389-4194-bcf3-a238515ee6d5", + "x-ms-routing-request-id": "WESTUS2:20210616T000733Z:76c5abb1-6389-4194-bcf3-a238515ee6d5" }, "ResponseBody": [] }, @@ -5766,7 +5966,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a38f8b5479120aa47abfd27dd14a8d55", "x-ms-return-client-request-id": "true" }, @@ -5775,17 +5976,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:34 GMT", + "Date": "Wed, 16 Jun 2021 00:07:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "38b9284a-8899-437c-93aa-c219486aad91", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-request-id": "38b9284a-8899-437c-93aa-c219486aad91", - "x-ms-routing-request-id": "WESTUS2:20210519T190234Z:38b9284a-8899-437c-93aa-c219486aad91" + "x-ms-correlation-request-id": "fdcf884f-c413-44a8-9b30-3b5dcb314123", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "fdcf884f-c413-44a8-9b30-3b5dcb314123", + "x-ms-routing-request-id": "WESTUS2:20210616T000734Z:fdcf884f-c413-44a8-9b30-3b5dcb314123" }, "ResponseBody": [] }, @@ -5794,7 +5995,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b98eb89489ee83a0b7a8dfc62206ec1", "x-ms-return-client-request-id": "true" }, @@ -5803,17 +6005,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:35 GMT", + "Date": "Wed, 16 Jun 2021 00:07:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "916de02c-6ec1-4502-8846-7b2b8dd8f69e", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-request-id": "916de02c-6ec1-4502-8846-7b2b8dd8f69e", - "x-ms-routing-request-id": "WESTUS2:20210519T190235Z:916de02c-6ec1-4502-8846-7b2b8dd8f69e" + "x-ms-correlation-request-id": "b9a6b88a-c6bf-4a0b-8d07-5e3d3655f4f1", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "b9a6b88a-c6bf-4a0b-8d07-5e3d3655f4f1", + "x-ms-routing-request-id": "WESTUS2:20210616T000735Z:b9a6b88a-c6bf-4a0b-8d07-5e3d3655f4f1" }, "ResponseBody": [] }, @@ -5822,7 +6024,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f08a249e706d9ea8f1484c9ac99ad84a", "x-ms-return-client-request-id": "true" }, @@ -5831,17 +6034,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:36 GMT", + "Date": "Wed, 16 Jun 2021 00:07:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "90c5d709-6f15-4ce1-9df4-8e2d18acb997", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-request-id": "90c5d709-6f15-4ce1-9df4-8e2d18acb997", - "x-ms-routing-request-id": "WESTUS2:20210519T190237Z:90c5d709-6f15-4ce1-9df4-8e2d18acb997" + "x-ms-correlation-request-id": "37a6f73f-e9e1-4fd2-b25f-8d2895d172ac", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "37a6f73f-e9e1-4fd2-b25f-8d2895d172ac", + "x-ms-routing-request-id": "WESTUS2:20210616T000736Z:37a6f73f-e9e1-4fd2-b25f-8d2895d172ac" }, "ResponseBody": [] }, @@ -5850,7 +6053,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9e2176458070be250a69897eba8a75a", "x-ms-return-client-request-id": "true" }, @@ -5859,17 +6063,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:37 GMT", + "Date": "Wed, 16 Jun 2021 00:07:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "c34fe6f0-e49d-42e0-ac9b-26d02162db93", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-request-id": "c34fe6f0-e49d-42e0-ac9b-26d02162db93", - "x-ms-routing-request-id": "WESTUS2:20210519T190238Z:c34fe6f0-e49d-42e0-ac9b-26d02162db93" + "x-ms-correlation-request-id": "12b22b2a-aafe-4410-ad09-d4f64addfa92", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "12b22b2a-aafe-4410-ad09-d4f64addfa92", + "x-ms-routing-request-id": "WESTUS2:20210616T000737Z:12b22b2a-aafe-4410-ad09-d4f64addfa92" }, "ResponseBody": [] }, @@ -5878,7 +6082,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "acdf10519cbf18e842fa5a56fba01f70", "x-ms-return-client-request-id": "true" }, @@ -5887,17 +6092,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:38 GMT", + "Date": "Wed, 16 Jun 2021 00:07:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "31df6612-00ef-4c1c-8c60-e7f485e9c540", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-request-id": "31df6612-00ef-4c1c-8c60-e7f485e9c540", - "x-ms-routing-request-id": "WESTUS2:20210519T190239Z:31df6612-00ef-4c1c-8c60-e7f485e9c540" + "x-ms-correlation-request-id": "973a3593-3889-46f7-853d-9045709b8df9", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "973a3593-3889-46f7-853d-9045709b8df9", + "x-ms-routing-request-id": "WESTUS2:20210616T000738Z:973a3593-3889-46f7-853d-9045709b8df9" }, "ResponseBody": [] }, @@ -5906,7 +6111,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4b9743a2943d45ba417e9fc6d811b349", "x-ms-return-client-request-id": "true" }, @@ -5915,17 +6121,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:39 GMT", + "Date": "Wed, 16 Jun 2021 00:07:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "50de1738-efb1-472b-978b-cbfb7f5bba2a", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-request-id": "50de1738-efb1-472b-978b-cbfb7f5bba2a", - "x-ms-routing-request-id": "WESTUS2:20210519T190240Z:50de1738-efb1-472b-978b-cbfb7f5bba2a" + "x-ms-correlation-request-id": "ba737201-b0ff-48cc-8426-e40736c3f1ff", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "ba737201-b0ff-48cc-8426-e40736c3f1ff", + "x-ms-routing-request-id": "WESTUS2:20210616T000739Z:ba737201-b0ff-48cc-8426-e40736c3f1ff" }, "ResponseBody": [] }, @@ -5934,7 +6140,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b848f2a02bbac88a2eca960dfe8c10b0", "x-ms-return-client-request-id": "true" }, @@ -5943,17 +6150,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:40 GMT", + "Date": "Wed, 16 Jun 2021 00:07:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1e212332-b0e2-4843-8d3f-cb37dbb4410f", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-request-id": "1e212332-b0e2-4843-8d3f-cb37dbb4410f", - "x-ms-routing-request-id": "WESTUS2:20210519T190241Z:1e212332-b0e2-4843-8d3f-cb37dbb4410f" + "x-ms-correlation-request-id": "4a927089-d049-4912-a8af-46e03bdad500", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "4a927089-d049-4912-a8af-46e03bdad500", + "x-ms-routing-request-id": "WESTUS2:20210616T000740Z:4a927089-d049-4912-a8af-46e03bdad500" }, "ResponseBody": [] }, @@ -5962,7 +6169,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "a7f427865b10bd1c55996a41fc214031", "x-ms-return-client-request-id": "true" }, @@ -5971,17 +6179,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:41 GMT", + "Date": "Wed, 16 Jun 2021 00:07:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f7eb7962-fdc1-411b-8e44-f41bb32a092c", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-request-id": "f7eb7962-fdc1-411b-8e44-f41bb32a092c", - "x-ms-routing-request-id": "WESTUS2:20210519T190242Z:f7eb7962-fdc1-411b-8e44-f41bb32a092c" + "x-ms-correlation-request-id": "846bda80-6699-4e61-b869-f2f656fe5a17", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "846bda80-6699-4e61-b869-f2f656fe5a17", + "x-ms-routing-request-id": "WESTUS2:20210616T000741Z:846bda80-6699-4e61-b869-f2f656fe5a17" }, "ResponseBody": [] }, @@ -5990,7 +6198,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "09b51147665777b6b8cf1d72fdad47b5", "x-ms-return-client-request-id": "true" }, @@ -5999,17 +6208,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:42 GMT", + "Date": "Wed, 16 Jun 2021 00:07:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f32a6bbe-0d8c-4b26-8720-6f82234caba5", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-request-id": "f32a6bbe-0d8c-4b26-8720-6f82234caba5", - "x-ms-routing-request-id": "WESTUS2:20210519T190243Z:f32a6bbe-0d8c-4b26-8720-6f82234caba5" + "x-ms-correlation-request-id": "eacb0d63-564b-4951-95ab-2d7e1adaebc2", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "eacb0d63-564b-4951-95ab-2d7e1adaebc2", + "x-ms-routing-request-id": "WESTUS2:20210616T000742Z:eacb0d63-564b-4951-95ab-2d7e1adaebc2" }, "ResponseBody": [] }, @@ -6018,7 +6227,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b03fef6e0b1c4438d58b6320c049cb0d", "x-ms-return-client-request-id": "true" }, @@ -6027,17 +6237,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:43 GMT", + "Date": "Wed, 16 Jun 2021 00:07:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b7e69797-0506-45a2-a253-05a6e3ef5daa", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-request-id": "b7e69797-0506-45a2-a253-05a6e3ef5daa", - "x-ms-routing-request-id": "WESTUS2:20210519T190244Z:b7e69797-0506-45a2-a253-05a6e3ef5daa" + "x-ms-correlation-request-id": "ef3a1134-79e4-45e3-9959-2340048e0169", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "ef3a1134-79e4-45e3-9959-2340048e0169", + "x-ms-routing-request-id": "WESTUS2:20210616T000743Z:ef3a1134-79e4-45e3-9959-2340048e0169" }, "ResponseBody": [] }, @@ -6046,7 +6256,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "edc6658a06d61f59717dee413eaabfa8", "x-ms-return-client-request-id": "true" }, @@ -6055,17 +6266,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:44 GMT", + "Date": "Wed, 16 Jun 2021 00:07:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "48a59983-976c-4385-96a0-5976d1169829", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-request-id": "48a59983-976c-4385-96a0-5976d1169829", - "x-ms-routing-request-id": "WESTUS2:20210519T190245Z:48a59983-976c-4385-96a0-5976d1169829" + "x-ms-correlation-request-id": "a6ac80bb-71fc-4da7-8128-675521d226d5", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "a6ac80bb-71fc-4da7-8128-675521d226d5", + "x-ms-routing-request-id": "WESTUS2:20210616T000744Z:a6ac80bb-71fc-4da7-8128-675521d226d5" }, "ResponseBody": [] }, @@ -6074,7 +6285,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0dd2b55290e13b14d87134cc0395b66f", "x-ms-return-client-request-id": "true" }, @@ -6083,17 +6295,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:45 GMT", + "Date": "Wed, 16 Jun 2021 00:07:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f59c0f28-2a75-48fa-96a4-7bd10cd863bf", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-request-id": "f59c0f28-2a75-48fa-96a4-7bd10cd863bf", - "x-ms-routing-request-id": "WESTUS2:20210519T190246Z:f59c0f28-2a75-48fa-96a4-7bd10cd863bf" + "x-ms-correlation-request-id": "909e7bd9-c5c4-46f8-9824-3b05d89d15b7", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "909e7bd9-c5c4-46f8-9824-3b05d89d15b7", + "x-ms-routing-request-id": "WESTUS2:20210616T000745Z:909e7bd9-c5c4-46f8-9824-3b05d89d15b7" }, "ResponseBody": [] }, @@ -6102,7 +6314,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "98e80f035ae767de96203e9e1cf6052b", "x-ms-return-client-request-id": "true" }, @@ -6111,17 +6324,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:46 GMT", + "Date": "Wed, 16 Jun 2021 00:07:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "317745d9-4982-47f8-9159-0f1fb1996353", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-request-id": "317745d9-4982-47f8-9159-0f1fb1996353", - "x-ms-routing-request-id": "WESTUS2:20210519T190247Z:317745d9-4982-47f8-9159-0f1fb1996353" + "x-ms-correlation-request-id": "2a205a99-468c-4fbb-8265-1bdfffa933be", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "2a205a99-468c-4fbb-8265-1bdfffa933be", + "x-ms-routing-request-id": "WESTUS2:20210616T000746Z:2a205a99-468c-4fbb-8265-1bdfffa933be" }, "ResponseBody": [] }, @@ -6130,7 +6343,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0bcebbcbbe76fa2b508a1465d28d1cdc", "x-ms-return-client-request-id": "true" }, @@ -6139,17 +6353,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:47 GMT", + "Date": "Wed, 16 Jun 2021 00:07:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-request-id": "e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5", - "x-ms-routing-request-id": "WESTUS2:20210519T190248Z:e6e1e2b7-3ae7-419b-afc4-0ea20d52f8c5" + "x-ms-correlation-request-id": "5a24864a-0a80-4745-884a-502d11015adb", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "5a24864a-0a80-4745-884a-502d11015adb", + "x-ms-routing-request-id": "WESTUS2:20210616T000747Z:5a24864a-0a80-4745-884a-502d11015adb" }, "ResponseBody": [] }, @@ -6158,7 +6372,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2f3e7fc727c1f7c0d66b76c151751fe2", "x-ms-return-client-request-id": "true" }, @@ -6167,17 +6382,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:48 GMT", + "Date": "Wed, 16 Jun 2021 00:07:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6463f8dc-2401-4917-912c-cf72faa7a299", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-request-id": "6463f8dc-2401-4917-912c-cf72faa7a299", - "x-ms-routing-request-id": "WESTUS2:20210519T190249Z:6463f8dc-2401-4917-912c-cf72faa7a299" + "x-ms-correlation-request-id": "5183407d-5a3e-48f0-a31e-2e11b7cce141", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "5183407d-5a3e-48f0-a31e-2e11b7cce141", + "x-ms-routing-request-id": "WESTUS2:20210616T000748Z:5183407d-5a3e-48f0-a31e-2e11b7cce141" }, "ResponseBody": [] }, @@ -6186,7 +6401,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4800086baac644f9e3ee475d46799509", "x-ms-return-client-request-id": "true" }, @@ -6195,17 +6411,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:49 GMT", + "Date": "Wed, 16 Jun 2021 00:07:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f642c6b4-1e81-4f86-b7b9-4884225132a8", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-request-id": "f642c6b4-1e81-4f86-b7b9-4884225132a8", - "x-ms-routing-request-id": "WESTUS2:20210519T190250Z:f642c6b4-1e81-4f86-b7b9-4884225132a8" + "x-ms-correlation-request-id": "3482f437-a1c7-4945-9a63-d48ecaac199a", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "3482f437-a1c7-4945-9a63-d48ecaac199a", + "x-ms-routing-request-id": "WESTUS2:20210616T000749Z:3482f437-a1c7-4945-9a63-d48ecaac199a" }, "ResponseBody": [] }, @@ -6214,7 +6430,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dd76203d6b8a469fad7350b476aa8da", "x-ms-return-client-request-id": "true" }, @@ -6223,17 +6440,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:50 GMT", + "Date": "Wed, 16 Jun 2021 00:07:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d7bb77e8-f25a-4631-8787-5955cccc4a6e", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-request-id": "d7bb77e8-f25a-4631-8787-5955cccc4a6e", - "x-ms-routing-request-id": "WESTUS2:20210519T190251Z:d7bb77e8-f25a-4631-8787-5955cccc4a6e" + "x-ms-correlation-request-id": "eca70663-614f-4172-bdd3-4ce002a15bb8", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "eca70663-614f-4172-bdd3-4ce002a15bb8", + "x-ms-routing-request-id": "WESTUS2:20210616T000750Z:eca70663-614f-4172-bdd3-4ce002a15bb8" }, "ResponseBody": [] }, @@ -6242,7 +6459,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "c9fa326bd38c1c1585f94bd2e063b15d", "x-ms-return-client-request-id": "true" }, @@ -6251,17 +6469,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:51 GMT", + "Date": "Wed, 16 Jun 2021 00:07:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0c61db8f-37de-4b2e-91aa-1830abf057ba", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-request-id": "0c61db8f-37de-4b2e-91aa-1830abf057ba", - "x-ms-routing-request-id": "WESTUS2:20210519T190252Z:0c61db8f-37de-4b2e-91aa-1830abf057ba" + "x-ms-correlation-request-id": "236bf0f6-bc01-41e6-a067-92ba096182d7", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "236bf0f6-bc01-41e6-a067-92ba096182d7", + "x-ms-routing-request-id": "WESTUS2:20210616T000751Z:236bf0f6-bc01-41e6-a067-92ba096182d7" }, "ResponseBody": [] }, @@ -6270,7 +6488,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "eebd6dd5819e94299f5b4def75eefc79", "x-ms-return-client-request-id": "true" }, @@ -6279,17 +6498,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:52 GMT", + "Date": "Wed, 16 Jun 2021 00:07:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8fc80a04-f497-472e-a364-020c75dd308b", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "8fc80a04-f497-472e-a364-020c75dd308b", - "x-ms-routing-request-id": "WESTUS2:20210519T190253Z:8fc80a04-f497-472e-a364-020c75dd308b" + "x-ms-correlation-request-id": "d2723721-3acc-4276-82c9-c794839c4b00", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "d2723721-3acc-4276-82c9-c794839c4b00", + "x-ms-routing-request-id": "WESTUS2:20210616T000752Z:d2723721-3acc-4276-82c9-c794839c4b00" }, "ResponseBody": [] }, @@ -6298,7 +6517,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "13f16c45cb7e307c4dbb17be8b96c497", "x-ms-return-client-request-id": "true" }, @@ -6307,17 +6527,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:54 GMT", + "Date": "Wed, 16 Jun 2021 00:07:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "44398e5c-e698-4379-b1ff-5b4eb13277c4", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "44398e5c-e698-4379-b1ff-5b4eb13277c4", - "x-ms-routing-request-id": "WESTUS2:20210519T190254Z:44398e5c-e698-4379-b1ff-5b4eb13277c4" + "x-ms-correlation-request-id": "6241c6a8-2c04-4e72-b2c0-bafe8d991a50", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "6241c6a8-2c04-4e72-b2c0-bafe8d991a50", + "x-ms-routing-request-id": "WESTUS2:20210616T000753Z:6241c6a8-2c04-4e72-b2c0-bafe8d991a50" }, "ResponseBody": [] }, @@ -6326,7 +6546,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "da35d725b9ace93c08652a318525a697", "x-ms-return-client-request-id": "true" }, @@ -6335,17 +6556,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:55 GMT", + "Date": "Wed, 16 Jun 2021 00:07:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "491f427a-c12f-44ee-b659-f8f807be8838", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "491f427a-c12f-44ee-b659-f8f807be8838", - "x-ms-routing-request-id": "WESTUS2:20210519T190255Z:491f427a-c12f-44ee-b659-f8f807be8838" + "x-ms-correlation-request-id": "1becdfa9-8275-404f-b3ce-386582d93a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "1becdfa9-8275-404f-b3ce-386582d93a1a", + "x-ms-routing-request-id": "WESTUS2:20210616T000754Z:1becdfa9-8275-404f-b3ce-386582d93a1a" }, "ResponseBody": [] }, @@ -6354,7 +6575,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "738dd1fd9d710adef18da1e2696b0808", "x-ms-return-client-request-id": "true" }, @@ -6363,17 +6585,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:56 GMT", + "Date": "Wed, 16 Jun 2021 00:07:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0fddb8a7-5c25-408c-b939-f01869dfd570", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "0fddb8a7-5c25-408c-b939-f01869dfd570", - "x-ms-routing-request-id": "WESTUS2:20210519T190256Z:0fddb8a7-5c25-408c-b939-f01869dfd570" + "x-ms-correlation-request-id": "8c168272-a4d5-402a-b57e-21320e5dc739", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "8c168272-a4d5-402a-b57e-21320e5dc739", + "x-ms-routing-request-id": "WESTUS2:20210616T000755Z:8c168272-a4d5-402a-b57e-21320e5dc739" }, "ResponseBody": [] }, @@ -6382,7 +6604,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9dc9b69722b88bcd2f080b19a14aaa27", "x-ms-return-client-request-id": "true" }, @@ -6391,17 +6614,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:57 GMT", + "Date": "Wed, 16 Jun 2021 00:07:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b", - "x-ms-routing-request-id": "WESTUS2:20210519T190257Z:dd80ff8a-449f-4ba0-8ad0-4be61b8f2c0b" + "x-ms-correlation-request-id": "6b6bb307-43f5-4a96-afdf-03cabc06f649", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "6b6bb307-43f5-4a96-afdf-03cabc06f649", + "x-ms-routing-request-id": "WESTUS2:20210616T000756Z:6b6bb307-43f5-4a96-afdf-03cabc06f649" }, "ResponseBody": [] }, @@ -6410,7 +6633,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "bac0801450098826f92be81f185a7f9d", "x-ms-return-client-request-id": "true" }, @@ -6419,17 +6643,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:58 GMT", + "Date": "Wed, 16 Jun 2021 00:07:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1d40679d-12d9-4917-ba3f-47808b5df2a2", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "1d40679d-12d9-4917-ba3f-47808b5df2a2", - "x-ms-routing-request-id": "WESTUS2:20210519T190258Z:1d40679d-12d9-4917-ba3f-47808b5df2a2" + "x-ms-correlation-request-id": "d1b114e1-c575-4f8a-a5e0-fbcdd1f89b9d", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "d1b114e1-c575-4f8a-a5e0-fbcdd1f89b9d", + "x-ms-routing-request-id": "WESTUS2:20210616T000757Z:d1b114e1-c575-4f8a-a5e0-fbcdd1f89b9d" }, "ResponseBody": [] }, @@ -6438,7 +6662,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "cf9a225c085cdbdf0401446892c568a6", "x-ms-return-client-request-id": "true" }, @@ -6447,17 +6672,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:02:59 GMT", + "Date": "Wed, 16 Jun 2021 00:07:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2b991234-db01-49bf-9cea-81531eaa15af", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-request-id": "2b991234-db01-49bf-9cea-81531eaa15af", - "x-ms-routing-request-id": "WESTUS2:20210519T190259Z:2b991234-db01-49bf-9cea-81531eaa15af" + "x-ms-correlation-request-id": "94827769-a0d1-43bd-904c-851a82137ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "94827769-a0d1-43bd-904c-851a82137ac0", + "x-ms-routing-request-id": "WESTUS2:20210616T000758Z:94827769-a0d1-43bd-904c-851a82137ac0" }, "ResponseBody": [] }, @@ -6466,7 +6691,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "e9cd7ae34eaa46fe8f40a48c39ae73d5", "x-ms-return-client-request-id": "true" }, @@ -6475,17 +6701,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:00 GMT", + "Date": "Wed, 16 Jun 2021 00:07:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "05163368-f594-4619-971e-15a4313ce782", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "05163368-f594-4619-971e-15a4313ce782", - "x-ms-routing-request-id": "WESTUS2:20210519T190300Z:05163368-f594-4619-971e-15a4313ce782" + "x-ms-correlation-request-id": "0227bc61-21d3-4db9-a423-c6c89b50ae4a", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "0227bc61-21d3-4db9-a423-c6c89b50ae4a", + "x-ms-routing-request-id": "WESTUS2:20210616T000759Z:0227bc61-21d3-4db9-a423-c6c89b50ae4a" }, "ResponseBody": [] }, @@ -6494,7 +6720,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7ebc6d88dab00ccaa0e5b6080cbdf634", "x-ms-return-client-request-id": "true" }, @@ -6503,17 +6730,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:01 GMT", + "Date": "Wed, 16 Jun 2021 00:08:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e4925d2d-9b33-4589-91af-ca45da527ce2", - "x-ms-ratelimit-remaining-subscription-reads": "11707", - "x-ms-request-id": "e4925d2d-9b33-4589-91af-ca45da527ce2", - "x-ms-routing-request-id": "WESTUS2:20210519T190301Z:e4925d2d-9b33-4589-91af-ca45da527ce2" + "x-ms-correlation-request-id": "13651ce7-9bd7-43e6-9ffa-efcb35b24e72", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "13651ce7-9bd7-43e6-9ffa-efcb35b24e72", + "x-ms-routing-request-id": "WESTUS2:20210616T000800Z:13651ce7-9bd7-43e6-9ffa-efcb35b24e72" }, "ResponseBody": [] }, @@ -6522,7 +6749,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9d3c41c2958c0ef323533f1b6452a155", "x-ms-return-client-request-id": "true" }, @@ -6531,17 +6759,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:02 GMT", + "Date": "Wed, 16 Jun 2021 00:08:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d008ae1c-4f17-4378-a7fd-7ba514b4760a", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "d008ae1c-4f17-4378-a7fd-7ba514b4760a", - "x-ms-routing-request-id": "WESTUS2:20210519T190302Z:d008ae1c-4f17-4378-a7fd-7ba514b4760a" + "x-ms-correlation-request-id": "3607bd76-54f3-4e40-b8f7-3a1b67a7ad10", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "3607bd76-54f3-4e40-b8f7-3a1b67a7ad10", + "x-ms-routing-request-id": "WESTUS2:20210616T000801Z:3607bd76-54f3-4e40-b8f7-3a1b67a7ad10" }, "ResponseBody": [] }, @@ -6550,7 +6778,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "24e06e8dea0808f6b0c149c498f639d2", "x-ms-return-client-request-id": "true" }, @@ -6559,17 +6788,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:03 GMT", + "Date": "Wed, 16 Jun 2021 00:08:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "46832ab8-de7d-4a13-b277-c8d7afa7d0ab", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "46832ab8-de7d-4a13-b277-c8d7afa7d0ab", - "x-ms-routing-request-id": "WESTUS2:20210519T190303Z:46832ab8-de7d-4a13-b277-c8d7afa7d0ab" + "x-ms-correlation-request-id": "2681e6e7-e8da-4659-8b11-cf22150a6be2", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "2681e6e7-e8da-4659-8b11-cf22150a6be2", + "x-ms-routing-request-id": "WESTUS2:20210616T000802Z:2681e6e7-e8da-4659-8b11-cf22150a6be2" }, "ResponseBody": [] }, @@ -6578,7 +6807,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f7ca6f4ad672f2497aae5b5c9aafa84e", "x-ms-return-client-request-id": "true" }, @@ -6587,17 +6817,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:04 GMT", + "Date": "Wed, 16 Jun 2021 00:08:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "812191b5-2f55-4dd0-a413-a350fc03e5dc", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "812191b5-2f55-4dd0-a413-a350fc03e5dc", - "x-ms-routing-request-id": "WESTUS2:20210519T190304Z:812191b5-2f55-4dd0-a413-a350fc03e5dc" + "x-ms-correlation-request-id": "097b18c5-1454-4c26-8251-56d2edf47b9b", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "097b18c5-1454-4c26-8251-56d2edf47b9b", + "x-ms-routing-request-id": "WESTUS2:20210616T000803Z:097b18c5-1454-4c26-8251-56d2edf47b9b" }, "ResponseBody": [] }, @@ -6606,7 +6836,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9e7b6043d2dcd82b4b33edcb4c2e752d", "x-ms-return-client-request-id": "true" }, @@ -6615,17 +6846,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:05 GMT", + "Date": "Wed, 16 Jun 2021 00:08:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "fc13d8c2-ec99-46bf-8c39-56a14a5233d5", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "fc13d8c2-ec99-46bf-8c39-56a14a5233d5", - "x-ms-routing-request-id": "WESTUS2:20210519T190305Z:fc13d8c2-ec99-46bf-8c39-56a14a5233d5" + "x-ms-correlation-request-id": "48c11ac1-c7f3-466d-82e5-c2fb4af40eed", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "48c11ac1-c7f3-466d-82e5-c2fb4af40eed", + "x-ms-routing-request-id": "WESTUS2:20210616T000804Z:48c11ac1-c7f3-466d-82e5-c2fb4af40eed" }, "ResponseBody": [] }, @@ -6634,7 +6865,8 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "f4d16d19aa88b6e325eda95a8e996d01", "x-ms-return-client-request-id": "true" }, @@ -6643,17 +6875,17 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 19 May 2021 19:03:06 GMT", + "Date": "Wed, 16 Jun 2021 00:08:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "549e32f5-e114-4826-85d2-ab32d4746085", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "549e32f5-e114-4826-85d2-ab32d4746085", - "x-ms-routing-request-id": "WESTUS2:20210519T190306Z:549e32f5-e114-4826-85d2-ab32d4746085" + "x-ms-correlation-request-id": "c524b03e-cdb0-44f7-8974-5ca7d30c2e2d", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "c524b03e-cdb0-44f7-8974-5ca7d30c2e2d", + "x-ms-routing-request-id": "WESTUS2:20210616T000805Z:c524b03e-cdb0-44f7-8974-5ca7d30c2e2d" }, "ResponseBody": [] }, @@ -6662,23 +6894,1706 @@ "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210519.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "3881fa199b7a77f544f1ab3ee97da54c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 204, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:06 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b013f0a7-ca80-4d75-a23f-c53716f0fb96", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "b013f0a7-ca80-4d75-a23f-c53716f0fb96", + "x-ms-routing-request-id": "WESTUS2:20210616T000807Z:b013f0a7-ca80-4d75-a23f-c53716f0fb96" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d432e38b3dd99c57cc478ef29d149b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1b49a343-b921-4a8a-ac9b-8b18ee8961d4", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "1b49a343-b921-4a8a-ac9b-8b18ee8961d4", + "x-ms-routing-request-id": "WESTUS2:20210616T000808Z:1b49a343-b921-4a8a-ac9b-8b18ee8961d4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51b2ecc63cac7db27859b096fea5cca7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:08 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a0a6a6df-9430-4392-883b-a2308aca5a02", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "a0a6a6df-9430-4392-883b-a2308aca5a02", + "x-ms-routing-request-id": "WESTUS2:20210616T000809Z:a0a6a6df-9430-4392-883b-a2308aca5a02" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "60215c473f56652334e8bbb623064e73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "38790ebb-7052-47f3-bbef-265c51d5f778", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "38790ebb-7052-47f3-bbef-265c51d5f778", + "x-ms-routing-request-id": "WESTUS2:20210616T000810Z:38790ebb-7052-47f3-bbef-265c51d5f778" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd77f9a853cbfc9f7bc5b584032f9ad7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:10 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0b008935-31d8-4d0e-a497-004928f24321", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "0b008935-31d8-4d0e-a497-004928f24321", + "x-ms-routing-request-id": "WESTUS2:20210616T000811Z:0b008935-31d8-4d0e-a497-004928f24321" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cca7d0f8e8af865cc84c1dc480fc5a71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "08ab8f50-3a1a-4d5a-ac89-fd9fa1c81c83", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "08ab8f50-3a1a-4d5a-ac89-fd9fa1c81c83", + "x-ms-routing-request-id": "WESTUS2:20210616T000812Z:08ab8f50-3a1a-4d5a-ac89-fd9fa1c81c83" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "05ee3d0acf2df3dcbc25e5918a9e6205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "46c134e4-b565-4d6b-9866-7ae2e2e28bd5", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "46c134e4-b565-4d6b-9866-7ae2e2e28bd5", + "x-ms-routing-request-id": "WESTUS2:20210616T000813Z:46c134e4-b565-4d6b-9866-7ae2e2e28bd5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "52bde44d815fbfc39cf1347f36da7b7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6d6dff82-8625-47cb-90d3-f74d0a4436a1", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "6d6dff82-8625-47cb-90d3-f74d0a4436a1", + "x-ms-routing-request-id": "WESTUS2:20210616T000814Z:6d6dff82-8625-47cb-90d3-f74d0a4436a1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c579436a944028aaf4b3108a03cbfc2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:14 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ab5a83b0-fafb-4906-97d0-0d090912cc6e", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "ab5a83b0-fafb-4906-97d0-0d090912cc6e", + "x-ms-routing-request-id": "WESTUS2:20210616T000815Z:ab5a83b0-fafb-4906-97d0-0d090912cc6e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9c7717e9073e8812792f683b9a5cbce1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:15 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "72e042ca-d8a3-444d-b2e5-d230750e9f53", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "72e042ca-d8a3-444d-b2e5-d230750e9f53", + "x-ms-routing-request-id": "WESTUS2:20210616T000816Z:72e042ca-d8a3-444d-b2e5-d230750e9f53" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "472665aa9d24b8c439955dab7139bbd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:16 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5cbcecb3-cfed-4bf0-abfc-3f01330bfac3", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "5cbcecb3-cfed-4bf0-abfc-3f01330bfac3", + "x-ms-routing-request-id": "WESTUS2:20210616T000817Z:5cbcecb3-cfed-4bf0-abfc-3f01330bfac3" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1f950af5de63624130f14b112c6e8d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:17 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d391aeba-3478-4660-a192-b759b333f9b1", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "d391aeba-3478-4660-a192-b759b333f9b1", + "x-ms-routing-request-id": "WESTUS2:20210616T000818Z:d391aeba-3478-4660-a192-b759b333f9b1" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9edf2ef6b4a44c0552be63a8aa671740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:18 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "90d27deb-5feb-4d4b-8ec4-63d82a58e967", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "90d27deb-5feb-4d4b-8ec4-63d82a58e967", + "x-ms-routing-request-id": "WESTUS2:20210616T000819Z:90d27deb-5feb-4d4b-8ec4-63d82a58e967" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "904696749dc6cb7e24c3163351b38cca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b2125497-15f4-4de4-9d65-78a4478ef7bc", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "b2125497-15f4-4de4-9d65-78a4478ef7bc", + "x-ms-routing-request-id": "WESTUS2:20210616T000820Z:b2125497-15f4-4de4-9d65-78a4478ef7bc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "43b5c5071d59402c0449cca47a98b8c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:20 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "cdef4aec-134f-4d75-b208-dbc13b7d031d", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "cdef4aec-134f-4d75-b208-dbc13b7d031d", + "x-ms-routing-request-id": "WESTUS2:20210616T000821Z:cdef4aec-134f-4d75-b208-dbc13b7d031d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "959d0bdafd2858d1b01479e19ed1fb9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "50154b61-b32c-4b10-97ea-72d007c7faed", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "50154b61-b32c-4b10-97ea-72d007c7faed", + "x-ms-routing-request-id": "WESTUS2:20210616T000822Z:50154b61-b32c-4b10-97ea-72d007c7faed" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e4a19832d3b156e66a068b7dd1d9508c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:23 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a3ce3f93-f6c2-4e47-a833-3bc1bd99cfad", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "a3ce3f93-f6c2-4e47-a833-3bc1bd99cfad", + "x-ms-routing-request-id": "WESTUS2:20210616T000823Z:a3ce3f93-f6c2-4e47-a833-3bc1bd99cfad" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45594c0af6160aa2f45c9345a34ba133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:24 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "89219db4-e31a-4f9b-baa0-9f7fd9b035f7", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "89219db4-e31a-4f9b-baa0-9f7fd9b035f7", + "x-ms-routing-request-id": "WESTUS2:20210616T000824Z:89219db4-e31a-4f9b-baa0-9f7fd9b035f7" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e2722d4dd3f6061825462b21715387d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:25 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a397bc40-3345-43c0-813c-01b916edb5f4", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "a397bc40-3345-43c0-813c-01b916edb5f4", + "x-ms-routing-request-id": "WESTUS2:20210616T000825Z:a397bc40-3345-43c0-813c-01b916edb5f4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "51d6edc3b5773b89f596f05440a1b31e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e957a900-a18a-4703-a671-59e41ff47325", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "e957a900-a18a-4703-a671-59e41ff47325", + "x-ms-routing-request-id": "WESTUS2:20210616T000826Z:e957a900-a18a-4703-a671-59e41ff47325" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a42f58646e663795345320cfcb8199a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "6da177fe-91a0-421d-bd74-c9d170fae868", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "6da177fe-91a0-421d-bd74-c9d170fae868", + "x-ms-routing-request-id": "WESTUS2:20210616T000827Z:6da177fe-91a0-421d-bd74-c9d170fae868" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b681bcd54f7498bba337ec5fe3c3c584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:28 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d8fe1bba-eb4b-4816-97af-4bc713919eec", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "d8fe1bba-eb4b-4816-97af-4bc713919eec", + "x-ms-routing-request-id": "WESTUS2:20210616T000828Z:d8fe1bba-eb4b-4816-97af-4bc713919eec" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18bd0c92e3235570579f1d2495b96f74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "50793072-8129-4ed3-b927-249e62d68c78", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "50793072-8129-4ed3-b927-249e62d68c78", + "x-ms-routing-request-id": "WESTUS2:20210616T000829Z:50793072-8129-4ed3-b927-249e62d68c78" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "847f4ffdfd1f14aa9d97002f81355371", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:30 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "81203762-5ba5-40b1-81d5-6999d8ba71aa", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "81203762-5ba5-40b1-81d5-6999d8ba71aa", + "x-ms-routing-request-id": "WESTUS2:20210616T000830Z:81203762-5ba5-40b1-81d5-6999d8ba71aa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bf3c9c8d81c4f17c4b2c5ed5329702ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1cc68af7-d389-4cb6-9c92-7d20774529ab", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "1cc68af7-d389-4cb6-9c92-7d20774529ab", + "x-ms-routing-request-id": "WESTUS2:20210616T000831Z:1cc68af7-d389-4cb6-9c92-7d20774529ab" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "936277c74143956462a87a8ce340d321", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b0155da6-730d-4215-8fb9-22555e7fde7b", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "b0155da6-730d-4215-8fb9-22555e7fde7b", + "x-ms-routing-request-id": "WESTUS2:20210616T000832Z:b0155da6-730d-4215-8fb9-22555e7fde7b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f896ab4bb07c7cb0d38e38f29ed4e206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "abacd4c6-151d-461b-84e8-b172343baa7a", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "abacd4c6-151d-461b-84e8-b172343baa7a", + "x-ms-routing-request-id": "WESTUS2:20210616T000834Z:abacd4c6-151d-461b-84e8-b172343baa7a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a681694bfd34b2e37a65d1b06f00e0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f06d1c45-1eb0-498f-a93b-f257196253fa", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "f06d1c45-1eb0-498f-a93b-f257196253fa", + "x-ms-routing-request-id": "WESTUS2:20210616T000835Z:f06d1c45-1eb0-498f-a93b-f257196253fa" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "87893c580900176dc6e5c0b50971f78d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9f316d67-8ba0-4e20-95a9-e1782865cd83", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "9f316d67-8ba0-4e20-95a9-e1782865cd83", + "x-ms-routing-request-id": "WESTUS2:20210616T000836Z:9f316d67-8ba0-4e20-95a9-e1782865cd83" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cdf774c6c9d88c4e7d4ac1d5529576e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:36 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "4fb5b311-152d-4574-9384-7ad2464e39ae", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "4fb5b311-152d-4574-9384-7ad2464e39ae", + "x-ms-routing-request-id": "WESTUS2:20210616T000837Z:4fb5b311-152d-4574-9384-7ad2464e39ae" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "61992d7f5a4b8a05a85043edff7842c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:37 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d8ef5eaf-753f-45cc-9e8e-018696273041", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "d8ef5eaf-753f-45cc-9e8e-018696273041", + "x-ms-routing-request-id": "WESTUS2:20210616T000838Z:d8ef5eaf-753f-45cc-9e8e-018696273041" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9155d0af41f88f32eefd09b54898c431", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "ca5d7939-3bcf-4aaf-b9e8-b0849c0d69cc", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "ca5d7939-3bcf-4aaf-b9e8-b0849c0d69cc", + "x-ms-routing-request-id": "WESTUS2:20210616T000839Z:ca5d7939-3bcf-4aaf-b9e8-b0849c0d69cc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db35dd6f96d86b426f6c248786608d04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:39 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "db9e40fe-20e9-4f01-9345-8475842d2e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "db9e40fe-20e9-4f01-9345-8475842d2e5e", + "x-ms-routing-request-id": "WESTUS2:20210616T000840Z:db9e40fe-20e9-4f01-9345-8475842d2e5e" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8226fb07e43f3ee9fa0a724d514f4210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:41 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f496e32b-d264-4df2-b069-8db5237e5d07", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "f496e32b-d264-4df2-b069-8db5237e5d07", + "x-ms-routing-request-id": "WESTUS2:20210616T000841Z:f496e32b-d264-4df2-b069-8db5237e5d07" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "217d118c674218ed8dea218c1cab098e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:42 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "154a918c-9e6b-41b6-bdfb-a0ef5743e3cc", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "154a918c-9e6b-41b6-bdfb-a0ef5743e3cc", + "x-ms-routing-request-id": "WESTUS2:20210616T000842Z:154a918c-9e6b-41b6-bdfb-a0ef5743e3cc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4dad047042718af2f3f7e0cd23f41a1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:43 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "d0931da5-5a97-4f33-9dda-7fda3c4e2f88", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "d0931da5-5a97-4f33-9dda-7fda3c4e2f88", + "x-ms-routing-request-id": "WESTUS2:20210616T000843Z:d0931da5-5a97-4f33-9dda-7fda3c4e2f88" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "75fb142a6be2a0c10d0df455c35d214f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:44 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "e1bf4745-5329-4d32-839f-a50656b8134d", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "e1bf4745-5329-4d32-839f-a50656b8134d", + "x-ms-routing-request-id": "WESTUS2:20210616T000844Z:e1bf4745-5329-4d32-839f-a50656b8134d" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4cdde401f4a1499e1ef22d4b861ff598", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:45 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1b411376-1bed-4a62-a5c7-bd2b364abb6f", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "1b411376-1bed-4a62-a5c7-bd2b364abb6f", + "x-ms-routing-request-id": "WESTUS2:20210616T000845Z:1b411376-1bed-4a62-a5c7-bd2b364abb6f" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "086102d094af04ab420c40644d9dc796", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "22b159b5-c619-44e5-92cd-a118173449d5", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "22b159b5-c619-44e5-92cd-a118173449d5", + "x-ms-routing-request-id": "WESTUS2:20210616T000846Z:22b159b5-c619-44e5-92cd-a118173449d5" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3fcc91d6cd17367d75b156ef3e761aed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:47 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "26ef1cb9-5ebf-404c-8740-928f1ba99f3c", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "26ef1cb9-5ebf-404c-8740-928f1ba99f3c", + "x-ms-routing-request-id": "WESTUS2:20210616T000847Z:26ef1cb9-5ebf-404c-8740-928f1ba99f3c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c1845b1818fb6c9f39d90994b43afc81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:48 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "46a487ae-468f-4377-a769-413e25ce6d7c", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "46a487ae-468f-4377-a769-413e25ce6d7c", + "x-ms-routing-request-id": "WESTUS2:20210616T000848Z:46a487ae-468f-4377-a769-413e25ce6d7c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f475962bb6530281842b93fe3dbbc5cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:49 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "f2e6ecb8-a7ac-4d3d-ba1e-073770a925a2", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "f2e6ecb8-a7ac-4d3d-ba1e-073770a925a2", + "x-ms-routing-request-id": "WESTUS2:20210616T000849Z:f2e6ecb8-a7ac-4d3d-ba1e-073770a925a2" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f14b52f20618bd9af15f053ec4e8813a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:50 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "824dc418-f7c0-48e6-9501-81f92a216c9b", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "824dc418-f7c0-48e6-9501-81f92a216c9b", + "x-ms-routing-request-id": "WESTUS2:20210616T000850Z:824dc418-f7c0-48e6-9501-81f92a216c9b" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a7c4d4b42501629ada823cd085a02e7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "52abf25b-134f-473d-8b1f-835036d8fb25", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "52abf25b-134f-473d-8b1f-835036d8fb25", + "x-ms-routing-request-id": "WESTUS2:20210616T000851Z:52abf25b-134f-473d-8b1f-835036d8fb25" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "62a23c130aee2469fcb703f3b0433e9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "1a053bce-4fd4-4bf9-8957-ad379f64bbde", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "1a053bce-4fd4-4bf9-8957-ad379f64bbde", + "x-ms-routing-request-id": "WESTUS2:20210616T000852Z:1a053bce-4fd4-4bf9-8957-ad379f64bbde" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "694958aa1df6cccbb8e91695c9ca3750", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b2a49cc6-992a-4659-afe3-c6f86eb13b6a", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "b2a49cc6-992a-4659-afe3-c6f86eb13b6a", + "x-ms-routing-request-id": "WESTUS2:20210616T000853Z:b2a49cc6-992a-4659-afe3-c6f86eb13b6a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "872a87301f46a94c6aa0ab4922a6b197", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 19 May 2021 19:03:07 GMT", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:54 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "9f98637d-1b8c-4d6e-929c-0a6a18953f73", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "9f98637d-1b8c-4d6e-929c-0a6a18953f73", - "x-ms-routing-request-id": "WESTUS2:20210519T190307Z:9f98637d-1b8c-4d6e-929c-0a6a18953f73" + "x-ms-correlation-request-id": "313f774c-ff2d-4d22-befa-53411853bb69", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "313f774c-ff2d-4d22-befa-53411853bb69", + "x-ms-routing-request-id": "WESTUS2:20210616T000854Z:313f774c-ff2d-4d22-befa-53411853bb69" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2d26a143c557f58771d5a904f4d35a32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "fe1310f1-71a8-4c69-8652-44ed04735d78", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "fe1310f1-71a8-4c69-8652-44ed04735d78", + "x-ms-routing-request-id": "WESTUS2:20210616T000855Z:fe1310f1-71a8-4c69-8652-44ed04735d78" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "29c2b280b7188a550c9ffe567282aa11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:56 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "84c5c7c0-ff96-4952-aac7-b0eb1a3fd891", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "84c5c7c0-ff96-4952-aac7-b0eb1a3fd891", + "x-ms-routing-request-id": "WESTUS2:20210616T000856Z:84c5c7c0-ff96-4952-aac7-b0eb1a3fd891" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "28517f380aa46bf9ff3415707547b597", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5f6b29fa-eac9-4dd8-ad4f-5e52c75181e0", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "5f6b29fa-eac9-4dd8-ad4f-5e52c75181e0", + "x-ms-routing-request-id": "WESTUS2:20210616T000857Z:5f6b29fa-eac9-4dd8-ad4f-5e52c75181e0" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "70c9794588e38c7e4b9b20b7c63183ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "b10d9e5a-beaf-44a3-a504-f9639229555c", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "b10d9e5a-beaf-44a3-a504-f9639229555c", + "x-ms-routing-request-id": "WESTUS2:20210616T000858Z:b10d9e5a-beaf-44a3-a504-f9639229555c" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "74cc982b3281758db85729e3a1e414c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:08:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "0770277d-3389-469c-90bc-582fc82c3abc", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "0770277d-3389-469c-90bc-582fc82c3abc", + "x-ms-routing-request-id": "WESTUS2:20210616T000859Z:0770277d-3389-469c-90bc-582fc82c3abc" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f91067ea39b8b02d01c5dc08e942a4cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:00 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "5512cc41-2ddf-4533-ab89-0c6261330972", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "5512cc41-2ddf-4533-ab89-0c6261330972", + "x-ms-routing-request-id": "WESTUS2:20210616T000900Z:5512cc41-2ddf-4533-ab89-0c6261330972" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd4526b1417a1315eb53b88b5e9aeb67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:01 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "533138e4-b4f1-4f6e-b7b3-3ac6972ff2de", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "533138e4-b4f1-4f6e-b7b3-3ac6972ff2de", + "x-ms-routing-request-id": "WESTUS2:20210616T000901Z:533138e4-b4f1-4f6e-b7b3-3ac6972ff2de" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5fcd5b878920f1366a1b73bc55858c75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "8ac38cdd-50b8-41e6-b9d8-28f0d76c054a", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "8ac38cdd-50b8-41e6-b9d8-28f0d76c054a", + "x-ms-routing-request-id": "WESTUS2:20210616T000902Z:8ac38cdd-50b8-41e6-b9d8-28f0d76c054a" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7b315cb3379fa84a52fd0e6581a15266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "7c40e27c-cc54-4181-b0ce-f8f9c06089c4", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "7c40e27c-cc54-4181-b0ce-f8f9c06089c4", + "x-ms-routing-request-id": "WESTUS2:20210616T000903Z:7c40e27c-cc54-4181-b0ce-f8f9c06089c4" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8d8175d9457528acef53735fce58be66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:04 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "2b9cb49c-9f05-442b-bfd3-ff09340ec9f6", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "2b9cb49c-9f05-442b-bfd3-ff09340ec9f6", + "x-ms-routing-request-id": "WESTUS2:20210616T000904Z:2b9cb49c-9f05-442b-bfd3-ff09340ec9f6" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02d842c770694fc711240d237bd16fc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Wed, 16 Jun 2021 00:09:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?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": "a8d098d8-4db2-4046-a884-8e21a314c324", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "a8d098d8-4db2-4046-a884-8e21a314c324", + "x-ms-routing-request-id": "WESTUS2:20210616T000906Z:a8d098d8-4db2-4046-a884-8e21a314c324" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVRFU1RSRzg5MTEtV0VTVFVTMi1WQUxJREFURSIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-fdc8e56afd25a242be4f225430716391-d0aeee3c02cb2a4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210615.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dfe20cc9fe036d00af098b4bc4ead9f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Wed, 16 Jun 2021 00:09:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50ceba5b-f19d-4fe4-8ddc-42b22dd4f945", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "50ceba5b-f19d-4fe4-8ddc-42b22dd4f945", + "x-ms-routing-request-id": "WESTUS2:20210616T000907Z:50ceba5b-f19d-4fe4-8ddc-42b22dd4f945" }, "ResponseBody": [] }