diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs similarity index 72% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs index 4e55514b7dcc..3426e2d647a7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/GenericResourceOperationsTests.cs @@ -7,33 +7,20 @@ namespace Azure.ResourceManager.Core.Tests { [Parallelizable] - public class GenericResourceTests : ResourceManagerTestBase + public class GenericResourceOperationsTests : ResourceManagerTestBase { - private string _rgName; - - private readonly string _location = "southcentralus"; - - public GenericResourceTests(bool isAsync) + public GenericResourceOperationsTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } - [OneTimeSetUp] - public async Task LocalOneTimeSetup() - { - _rgName = SessionRecording.GenerateAssetName("testRg-"); - var subscription = await GlobalClient.GetSubscriptions().TryGetAsync(SessionEnvironment.SubscriptionId); - _ = await subscription.GetResourceGroups().Construct(_location).StartCreateOrUpdateAsync(_rgName).ConfigureAwait(false); - StopSessionRecording(); - } - [TestCase] [RecordedTest] public async Task GetGenericsConfirmException() { - var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}/providers/Microsoft.Compute/availabilitySets/testavset"; - ArmClientOptions options = new ArmClientOptions(); - _ = GetArmClient(options); // setup providers client + var rgName = Recording.GenerateAssetName("testrg"); + _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.Compute/availabilitySets/testavset"; var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); var genericResourceOperations = new GenericResourceOperations(subOp, asetid); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); @@ -45,9 +32,9 @@ public async Task GetGenericsConfirmException() [RecordedTest] public async Task GetGenericsBadNameSpace() { - var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}/providers/Microsoft.NotAValidNameSpace123/availabilitySets/testavset"; - ArmClientOptions options = new ArmClientOptions(); - _ = GetArmClient(options); // setup providers client + var rgName = Recording.GenerateAssetName("testrg"); + _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.NotAValidNameSpace123/availabilitySets/testavset"; var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); var genericResourceOperations = new GenericResourceOperations(subOp, asetid); InvalidOperationException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); @@ -58,7 +45,9 @@ public async Task GetGenericsBadNameSpace() [RecordedTest] public async Task GetGenericsBadApiVersion() { - ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; + var rgName = Recording.GenerateAssetName("testrg"); + _ = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}"; ArmClientOptions options = new ArmClientOptions(); options.ApiVersions.SetApiVersion(rgid.ResourceType, "1500-10-10"); var client = GetArmClient(options); @@ -72,14 +61,13 @@ public async Task GetGenericsBadApiVersion() [RecordedTest] public async Task GetGenericsGoodApiVersion() { - ResourceGroupResourceIdentifier rgid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; - ArmClientOptions options = new ArmClientOptions(); - var client = GetArmClient(options); - var subOp = await client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); - var genericResourceOperations = new GenericResourceOperations(subOp, rgid); - var rg = await genericResourceOperations.GetAsync(); - Assert.IsNotNull(rg.Value); - Assert.IsTrue(rg.Value.Data.Name.Equals(_rgName)); + var rgName = Recording.GenerateAssetName("testrg"); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(rgName); + var subOp = await Client.GetSubscriptions().TryGetAsync(TestEnvironment.SubscriptionId); + var genericResourceOperations = new GenericResourceOperations(subOp, rg.Id); + var genericResource = await genericResourceOperations.GetAsync(); + Assert.IsNotNull(genericResource.Value); + Assert.IsTrue(genericResource.Value.Data.Name.Equals(rgName)); } [TestCase] @@ -90,6 +78,9 @@ public async Task Delete() var aset = await CreateGenericAvailabilitySetAsync(rg.Id); Assert.DoesNotThrowAsync(async () => await aset.DeleteAsync()); + + var fakeId = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; + Assert.ThrowsAsync(async () => _ = await CreateGenericAvailabilitySetAsync(fakeId)); } [TestCase] @@ -98,13 +89,21 @@ public async Task StartDelete() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var asetOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await asetOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await createOp.WaitForCompletionAsync(); - Assert.DoesNotThrowAsync(async () => { + Assert.DoesNotThrowAsync(async () => + { var deleteOp = await aset.StartDeleteAsync(); _ = await deleteOp.WaitForCompletionResponseAsync(); }); + + var fakeId = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; + Assert.ThrowsAsync(async () => + { + var createOp = await StartCreateGenericAvailabilitySetAsync(fakeId); + _ = await createOp.WaitForCompletionAsync(); + }); } [TestCase] @@ -114,6 +113,8 @@ public async Task AddTag() ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); var aset = await CreateGenericAvailabilitySetAsync(rg.Id); + Assert.AreEqual(0, aset.Data.Tags.Count); + aset = await aset.AddTagAsync("key", "value"); Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); @@ -126,8 +127,10 @@ public async Task StartAddTag() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var asetOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await asetOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await createOp.WaitForCompletionAsync(); + + Assert.AreEqual(0, aset.Data.Tags.Count); var addTagOp = await aset.StartAddTagAsync("key", "value"); aset = await addTagOp.WaitForCompletionAsync(); @@ -155,6 +158,8 @@ public async Task SetTags() ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); var aset = await CreateGenericAvailabilitySetAsync(rg.Id); + Assert.AreEqual(0, aset.Data.Tags.Count); + Dictionary tags = new Dictionary(); tags.Add("key", "value"); aset = await aset.SetTagsAsync(tags); @@ -169,8 +174,8 @@ public async Task StartSetTags() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var asetOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await asetOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await createOp.WaitForCompletionAsync(); Dictionary tags = new Dictionary(); tags.Add("key", "value"); @@ -195,6 +200,7 @@ public async Task RemoveTag() aset = await aset.RemoveTagAsync("key"); Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual(0, aset.Data.Tags.Count); } [TestCase] @@ -203,8 +209,8 @@ public async Task StartRemoveTag() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var asetOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await asetOp.WaitForCompletionAsync(); + var crateOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await crateOp.WaitForCompletionAsync(); Dictionary tags = new Dictionary(); tags.Add("key", "value"); @@ -215,6 +221,7 @@ public async Task StartRemoveTag() aset = await removeTagOp.WaitForCompletionAsync(); Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); + Assert.AreEqual(0, aset.Data.Tags.Count); } [TestCase] @@ -230,6 +237,8 @@ public async Task Update() Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); Assert.AreEqual("value", aset.Data.Tags["key"]); + + Assert.ThrowsAsync(async () => _ = await aset.UpdateAsync(null)); } [TestCase] @@ -238,8 +247,8 @@ public async Task StartUpdate() { var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(LocationData.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var asetOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await asetOp.WaitForCompletionAsync(); + var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); + GenericResource aset = await createOp.WaitForCompletionAsync(); var data = ConstructGenericAvailabilitySet(); data.Tags.Add("key", "value"); @@ -248,6 +257,12 @@ public async Task StartUpdate() Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); Assert.AreEqual("value", aset.Data.Tags["key"]); + + Assert.ThrowsAsync(async () => + { + var updateOp = await aset.StartUpdateAsync(null); + _ = await updateOp.WaitForCompletionAsync(); + }); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json index 70a60d643049..76b8360ce755 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag().json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "c9f11469da0c4122807d2988105f785a", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6f11ac5231dc9dd31b3ba9da51a69d32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:14 GMT", + "Date": "Mon, 14 Jun 2021 23:38:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "028f60a5-d933-46ce-8521-1532c2cc99f2", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "028f60a5-d933-46ce-8521-1532c2cc99f2", - "x-ms-routing-request-id": "WESTUS2:20210507T211614Z:028f60a5-d933-46ce-8521-1532c2cc99f2" + "x-ms-correlation-request-id": "2f61d757-eaa4-4e92-88e9-ff3c2849a799", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "2f61d757-eaa4-4e92-88e9-ff3c2849a799", + "x-ms-routing-request-id": "WESTUS2:20210614T233817Z:2f61d757-eaa4-4e92-88e9-ff3c2849a799" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8806?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3471?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-4d2f710ebd9fa344bacc2ad73655878c-ec0b993317f9474d-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": "400a481fe6f417b509beb7bb789a48b0", + "traceparent": "00-d1d18f79417889499d39e19431d22902-f29b63aa46395e4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ef2f89d4f58f202dac295f8d2d84257", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:14 GMT", + "Date": "Mon, 14 Jun 2021 23:38:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8588274-dddf-4874-981c-d8e7e05c93e9", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "c8588274-dddf-4874-981c-d8e7e05c93e9", - "x-ms-routing-request-id": "WESTUS2:20210507T211615Z:c8588274-dddf-4874-981c-d8e7e05c93e9" + "x-ms-correlation-request-id": "7a0fb3b5-1870-4e0a-9c63-15572e7ffa85", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "7a0fb3b5-1870-4e0a-9c63-15572e7ffa85", + "x-ms-routing-request-id": "WESTUS2:20210614T233818Z:7a0fb3b5-1870-4e0a-9c63-15572e7ffa85" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806", - "name": "testrg8806", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471", + "name": "testrg3471", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fb5b9065fe69504d968595328f30cc49-67b7b8ce6d79ac48-00", + "traceparent": "00-f8ba27c130e2ca4d817c43d0f6126149-154f9072240f8b4f-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": "871e72604615218a9e8d5a26269b02c1", + "x-ms-client-request-id": "f9262ef4af315b66d2278e0f5d656383", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:14 GMT", + "Date": "Mon, 14 Jun 2021 23:38:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a338d15b-1431-41b0-86f7-a87ba23881c3", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "a338d15b-1431-41b0-86f7-a87ba23881c3", - "x-ms-routing-request-id": "WESTUS2:20210507T211615Z:a338d15b-1431-41b0-86f7-a87ba23881c3" + "x-ms-correlation-request-id": "7a42093e-bb6b-46b9-9411-6a0935ec5627", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "7a42093e-bb6b-46b9-9411-6a0935ec5627", + "x-ms-routing-request-id": "WESTUS2:20210614T233818Z:7a42093e-bb6b-46b9-9411-6a0935ec5627" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-fb5b9065fe69504d968595328f30cc49-4ac54eb7e99de341-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "de52175774c53c2eb1021b6b8508e3e1", + "traceparent": "00-f8ba27c130e2ca4d817c43d0f6126149-d1204a5683de014c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "58633e85f94a0e5d7d016f3ea4486267", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,9 +4194,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "de52175774c53c2eb1021b6b8508e3e1", - "x-ms-correlation-request-id": "727ea877-988b-4c1e-b9ca-7e252f2cf075", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "7563addb-eb0a-4532-93e7-bff5f0e913b2", - "x-ms-routing-request-id": "WESTUS2:20210507T211616Z:727ea877-988b-4c1e-b9ca-7e252f2cf075" + "x-ms-client-request-id": "58633e85f94a0e5d7d016f3ea4486267", + "x-ms-correlation-request-id": "079e1349-79ca-4892-a449-46f84afc5212", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1113", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "05070e4c-979b-4a12-94b1-e9787917810d", + "x-ms-routing-request-id": "WESTUS2:20210614T233819Z:079e1349-79ca-4892-a449-46f84afc5212" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset4124\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset242\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8321f9b5d2f6ec0a44e2d5132a1f9b96", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "994d7531fedefa61d1177c2f4027b689", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,9 +4257,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "432", + "Content-Length": "430", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:16 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8321f9b5d2f6ec0a44e2d5132a1f9b96", - "x-ms-correlation-request-id": "68176f1c-6bea-499a-9f08-6c3082a75707", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "8ca47fc7-1ce1-42bd-9062-5b98b44cf4ff", - "x-ms-routing-request-id": "WESTUS2:20210507T211616Z:68176f1c-6bea-499a-9f08-6c3082a75707" + "x-ms-client-request-id": "994d7531fedefa61d1177c2f4027b689", + "x-ms-correlation-request-id": "41641149-26dd-468f-9edd-ea22e9c715f9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1111", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9046a2f5-3355-48f7-9fc0-f667272583e7", + "x-ms-routing-request-id": "WESTUS2:20210614T233819Z:41641149-26dd-468f-9edd-ea22e9c715f9" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset4124\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset242\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4130,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "1387256580", + "RandomSeed": "1762228571", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json index 8712ee7ba025..79c4a49c0d60 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/AddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/AddTag()Async.json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "c9f11469da0c4122807d2988105f785a", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "929b1cf9d587b9a2e7a2380697fcc5fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:14 GMT", + "Date": "Mon, 14 Jun 2021 23:38:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f9648ec-1435-4338-a7b1-e798e0a133d6", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "0f9648ec-1435-4338-a7b1-e798e0a133d6", - "x-ms-routing-request-id": "WESTUS2:20210507T211614Z:0f9648ec-1435-4338-a7b1-e798e0a133d6" + "x-ms-correlation-request-id": "5e5dd13b-c678-460d-9284-841d3a881491", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "5e5dd13b-c678-460d-9284-841d3a881491", + "x-ms-routing-request-id": "WESTUS2:20210614T233817Z:5e5dd13b-c678-460d-9284-841d3a881491" }, "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", @@ -42,40 +46,40 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8806?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6803?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-eae164c77b2fe7479dff75ecfdf923cd-9a2408ab35df3f48-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": "400a481fe6f417b509beb7bb789a48b0", + "traceparent": "00-2b75dd15d90ef04bbf229365755d2cf7-1e40beb362a2a345-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db389169f8820587bba8621c51007309", "x-ms-return-client-request-id": "true" }, "RequestBody": { "location": "West US 2", "tags": {} }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5895f9c-b18e-403a-a127-7294a3c54252", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "d5895f9c-b18e-403a-a127-7294a3c54252", - "x-ms-routing-request-id": "WESTUS2:20210507T211615Z:d5895f9c-b18e-403a-a127-7294a3c54252" + "x-ms-correlation-request-id": "4386ffec-7b9e-4003-a426-ddb5e3f8ae5e", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "4386ffec-7b9e-4003-a426-ddb5e3f8ae5e", + "x-ms-routing-request-id": "WESTUS2:20210614T233818Z:4386ffec-7b9e-4003-a426-ddb5e3f8ae5e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806", - "name": "testrg8806", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803", + "name": "testrg6803", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,24 +95,24 @@ "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 )", - "x-ms-client-request-id": "871e72604615218a9e8d5a26269b02c1", + "x-ms-client-request-id": "d1a69f1dbf6b2cdefcca4bc0a70b9faa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc2fbe43-7ec0-43ac-af54-8ebc6a94817c", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "bc2fbe43-7ec0-43ac-af54-8ebc6a94817c", - "x-ms-routing-request-id": "WESTUS2:20210507T211615Z:bc2fbe43-7ec0-43ac-af54-8ebc6a94817c" + "x-ms-correlation-request-id": "06d72ca3-eff0-4413-93ca-9e15aece93d2", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "06d72ca3-eff0-4413-93ca-9e15aece93d2", + "x-ms-routing-request-id": "WESTUS2:20210614T233818Z:06d72ca3-eff0-4413-93ca-9e15aece93d2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -188,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -261,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -429,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -472,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -545,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -714,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -757,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -831,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -905,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -978,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1053,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1128,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1159,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1214,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1287,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1359,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1422,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1494,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1559,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1624,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1697,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1762,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1805,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1859,9 +1927,11 @@ "Switzerland North", "Germany 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 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2011,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2054,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2100,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2146,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2332,9 +2413,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", @@ -2380,9 +2463,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", @@ -2428,9 +2513,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", @@ -2476,9 +2563,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", @@ -2524,9 +2613,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", @@ -2572,9 +2663,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", @@ -2732,9 +2825,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" @@ -2775,9 +2880,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", @@ -2840,9 +2947,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", @@ -2904,9 +3013,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", @@ -2953,9 +3064,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", @@ -3000,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3140,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3183,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3228,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3273,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3317,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3361,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3405,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3449,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3493,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3537,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3603,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3655,9 +3793,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", @@ -3800,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3843,9 +3995,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", @@ -3988,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4001,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "de52175774c53c2eb1021b6b8508e3e1", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1560eefa778314248ccc2d409c96a1c5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:15 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4037,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "de52175774c53c2eb1021b6b8508e3e1", - "x-ms-correlation-request-id": "8e8fd9cc-1da5-4fe4-906e-ddfb465dc0c3", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "5ff31bc6-7d9c-4195-9a3b-a6391b52e8c6", - "x-ms-routing-request-id": "WESTUS2:20210507T211616Z:8e8fd9cc-1da5-4fe4-906e-ddfb465dc0c3" + "x-ms-client-request-id": "1560eefa778314248ccc2d409c96a1c5", + "x-ms-correlation-request-id": "ea8c3897-dab0-44a8-9247-6ab28d5176ac", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1112", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "836ee529-2403-4719-95ac-6c8a2ff8a9f5", + "x-ms-routing-request-id": "WESTUS2:20210614T233819Z:ea8c3897-dab0-44a8-9247-6ab28d5176ac" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset4124\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6081\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4062,15 +4228,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8321f9b5d2f6ec0a44e2d5132a1f9b96", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "125771c3f312a6fc7a92449f929e9065", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:16 GMT", + "Date": "Mon, 14 Jun 2021 23:38:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4100,17 +4266,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8321f9b5d2f6ec0a44e2d5132a1f9b96", - "x-ms-correlation-request-id": "05262fc7-00f8-4a94-98ab-3cd5dbccdefe", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "9f41cc03-ac2d-4d5a-b906-c0a89317b662", - "x-ms-routing-request-id": "WESTUS2:20210507T211617Z:05262fc7-00f8-4a94-98ab-3cd5dbccdefe" + "x-ms-client-request-id": "125771c3f312a6fc7a92449f929e9065", + "x-ms-correlation-request-id": "d56c8653-5f67-4e3d-b1c7-6aa298a801ff", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1110", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "6b9ffadd-9066-49f6-bba6-e4ecf0c8b13b", + "x-ms-routing-request-id": "WESTUS2:20210614T233819Z:d56c8653-5f67-4e3d-b1c7-6aa298a801ff" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset4124\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8806/providers/Microsoft.Compute/availabilitySets/test-aset4124\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6081\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "1387256580", + "RandomSeed": "385272852", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json index 475b348d5021..8006f40eefd9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete().json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "a428d36227e2c0e08e1efb284c5d42d9", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6e267d0cdae7bfd701f26ca60d20402", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:16 GMT", + "Date": "Mon, 14 Jun 2021 23:38:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fca11e6e-7de3-4cda-8d15-66eacc028f48", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "fca11e6e-7de3-4cda-8d15-66eacc028f48", - "x-ms-routing-request-id": "WESTUS2:20210507T211617Z:fca11e6e-7de3-4cda-8d15-66eacc028f48" + "x-ms-correlation-request-id": "98175db8-c848-4407-99d8-480455d98f96", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "98175db8-c848-4407-99d8-480455d98f96", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:98175db8-c848-4407-99d8-480455d98f96" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg709?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6183?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-bdb6dbab23cb5c4598f79219c5513f3f-5a35eb9e32717249-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": "bd3ee2ce8f6c2878896326ca7cb8eb8d", + "traceparent": "00-97091918b84bc04ca57343008e723677-f0dec12a8ea7444b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ceb2fd31aaf8b15ad96747c14259352", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -61,21 +65,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "226", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:17 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51db6617-c7c9-4d8f-90ab-b6f6109f1780", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "51db6617-c7c9-4d8f-90ab-b6f6109f1780", - "x-ms-routing-request-id": "WESTUS2:20210507T211618Z:51db6617-c7c9-4d8f-90ab-b6f6109f1780" + "x-ms-correlation-request-id": "b07938f7-35b7-496c-8ab0-64d4ca90e181", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "b07938f7-35b7-496c-8ab0-64d4ca90e181", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:b07938f7-35b7-496c-8ab0-64d4ca90e181" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709", - "name": "testrg709", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6183", + "name": "testrg6183", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-edfb6f7f0612e14091fe848103f41e7c-c85608dca508864d-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": "4f6d4d86a75f39367be1e7527e54b2c6", + "x-ms-client-request-id": "da1f723b189d19c141b6a3625a7e2649", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:17 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60fa2549-9280-446e-9e43-36a61202e257", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "60fa2549-9280-446e-9e43-36a61202e257", - "x-ms-routing-request-id": "WESTUS2:20210507T211618Z:60fa2549-9280-446e-9e43-36a61202e257" + "x-ms-correlation-request-id": "78776e89-b06c-4082-86d1-cbcb9e417ce0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "78776e89-b06c-4082-86d1-cbcb9e417ce0", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:78776e89-b06c-4082-86d1-cbcb9e417ce0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1927,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2413,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", @@ -2381,9 +2463,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", @@ -2429,9 +2513,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", @@ -2477,9 +2563,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", @@ -2525,9 +2613,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", @@ -2573,9 +2663,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", @@ -2733,9 +2825,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" @@ -2776,9 +2880,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", @@ -2841,9 +2947,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", @@ -2905,9 +3013,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", @@ -2954,9 +3064,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", @@ -3001,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3793,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", @@ -3801,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3995,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", @@ -3989,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709/providers/Microsoft.Compute/availabilitySets/test-aset539?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6183/providers/Microsoft.Compute/availabilitySets/test-aset9180?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-edfb6f7f0612e14091fe848103f41e7c-508532184ae09844-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "58965313f657b0437b59c3b9f612660f", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e8ea586e20aecc4d4b003688ff5bf993", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,9 +4192,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "405", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "58965313f657b0437b59c3b9f612660f", - "x-ms-correlation-request-id": "98c1ccd9-3e7e-4ecc-9461-2050282a668f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1195", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "ae3e899a-bdd3-441a-94a6-49014df7ea88", - "x-ms-routing-request-id": "WESTUS2:20210507T211619Z:98c1ccd9-3e7e-4ecc-9461-2050282a668f" + "x-ms-client-request-id": "e8ea586e20aecc4d4b003688ff5bf993", + "x-ms-correlation-request-id": "b3dbc33c-b1a0-485a-8840-d2ee97b93f3f", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1109", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "fa76f169-d7d6-4e57-83bd-938199b4ef07", + "x-ms-routing-request-id": "WESTUS2:20210614T233821Z:b3dbc33c-b1a0-485a-8840-d2ee97b93f3f" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset539\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709/providers/Microsoft.Compute/availabilitySets/test-aset539\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9180\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6183/providers/Microsoft.Compute/availabilitySets/test-aset9180\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,13 +4228,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg709/providers/Microsoft.Compute/availabilitySets/test-aset539?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6183/providers/Microsoft.Compute/availabilitySets/test-aset9180?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6468037334548f6309bdd306e37c4369", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cca6324e6aa81b0c25528f9ce2381ae5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -4078,7 +4242,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:19 GMT", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4087,18 +4251,63 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6468037334548f6309bdd306e37c4369", - "x-ms-correlation-request-id": "cd7f5f51-07cf-47a4-9526-77212e6fcd75", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "595a5eb6-b43e-4109-994a-0ca7e1405508", - "x-ms-routing-request-id": "WESTUS2:20210507T211620Z:cd7f5f51-07cf-47a4-9526-77212e6fcd75" + "x-ms-client-request-id": "cca6324e6aa81b0c25528f9ce2381ae5", + "x-ms-correlation-request-id": "7e47defc-82e6-4b72-bf4a-640a047d0166", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1143", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "6dd83314-656b-48c4-b007-131c9545031d", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:7e47defc-82e6-4b72-bf4a-640a047d0166" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset3888?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.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5cc3a1dea2c980c7a6d91d39833f1d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:6bf24c6e-98bb-40b3-ac1e-da5ec7c31d04" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } } ], "Variables": { - "RandomSeed": "1710432852", + "RandomSeed": "1404101973", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json index d1704f6d8492..44bd337c19fa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Delete()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Delete()Async.json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "fbbd09f81d367dfd186318e6469f24e6", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1aaf8f23453a409d8cb31bcf5fca70a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:17 GMT", + "Date": "Mon, 14 Jun 2021 23:38:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22863a86-c737-4e87-9005-c522a95b3d05", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "22863a86-c737-4e87-9005-c522a95b3d05", - "x-ms-routing-request-id": "WESTUS2:20210507T211617Z:22863a86-c737-4e87-9005-c522a95b3d05" + "x-ms-correlation-request-id": "ee7b162c-8fa4-41da-a61b-60b89b236171", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ee7b162c-8fa4-41da-a61b-60b89b236171", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:ee7b162c-8fa4-41da-a61b-60b89b236171" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2780?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5765?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-ee60dff4da3b734990e79a7663fdc365-874f189955c4eb4c-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": "e4a07df8f470f6dc23df45965d64da76", + "traceparent": "00-94e09cf75b352048996cadacf286a8c9-dd20f56d99560d4c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "086a97d0b0cf60de603fc2905fd3a15d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:17 GMT", + "Date": "Mon, 14 Jun 2021 23:38:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "682daba4-db5a-44f9-a981-008b838f3fde", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "682daba4-db5a-44f9-a981-008b838f3fde", - "x-ms-routing-request-id": "WESTUS2:20210507T211618Z:682daba4-db5a-44f9-a981-008b838f3fde" + "x-ms-correlation-request-id": "676c397e-c5e4-4651-bccd-cc3c6675f6f1", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "676c397e-c5e4-4651-bccd-cc3c6675f6f1", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:676c397e-c5e4-4651-bccd-cc3c6675f6f1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780", - "name": "testrg2780", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5765", + "name": "testrg5765", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-dff85597544cd44ea9f87e1d69599ee8-e67eb16fe5ceca41-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": "477fb92c368ef56cd9e10abf0868593b", + "x-ms-client-request-id": "0d26ab3bdd5f3f22d3d6b29a7249b9e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a90c1097-6136-4305-8cf8-50c90e5dd07a", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a90c1097-6136-4305-8cf8-50c90e5dd07a", - "x-ms-routing-request-id": "WESTUS2:20210507T211618Z:a90c1097-6136-4305-8cf8-50c90e5dd07a" + "x-ms-correlation-request-id": "a62fa0dd-7121-458f-ae11-4522d1bc9ad7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "a62fa0dd-7121-458f-ae11-4522d1bc9ad7", + "x-ms-routing-request-id": "WESTUS2:20210614T233820Z:a62fa0dd-7121-458f-ae11-4522d1bc9ad7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -188,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -261,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -429,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -472,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -545,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -714,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -757,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -831,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -905,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -978,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1053,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1128,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1159,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1214,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1287,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1359,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1422,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1494,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1559,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1624,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1697,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1762,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1805,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1859,9 +1928,11 @@ "Switzerland North", "Germany 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 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2011,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2054,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2100,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2146,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2332,9 +2414,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", @@ -2380,9 +2464,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", @@ -2428,9 +2514,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", @@ -2476,9 +2564,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", @@ -2524,9 +2614,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", @@ -2572,9 +2664,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", @@ -2732,9 +2826,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" @@ -2775,9 +2881,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", @@ -2840,9 +2948,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", @@ -2904,9 +3014,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", @@ -2953,9 +3065,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", @@ -3000,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3140,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3183,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3228,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3273,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3317,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3361,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3405,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3449,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3493,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3537,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3603,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3655,9 +3794,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", @@ -3800,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3843,9 +3996,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", @@ -3988,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4001,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780/providers/Microsoft.Compute/availabilitySets/test-aset9720?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5765/providers/Microsoft.Compute/availabilitySets/test-aset1121?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "65b69a7787dee01405133eb8e6baff3d", + "traceparent": "00-dff85597544cd44ea9f87e1d69599ee8-7daa7c2e5e26c94a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dfa3db9553e3d0deb9da05dbaf2de079", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:18 GMT", + "Date": "Mon, 14 Jun 2021 23:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4037,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "65b69a7787dee01405133eb8e6baff3d", - "x-ms-correlation-request-id": "fc6ba447-2b9e-47cc-87cd-824b302e3177", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "7f177623-106c-46a8-9d96-4c7d90770847", - "x-ms-routing-request-id": "WESTUS2:20210507T211619Z:fc6ba447-2b9e-47cc-87cd-824b302e3177" + "x-ms-client-request-id": "dfa3db9553e3d0deb9da05dbaf2de079", + "x-ms-correlation-request-id": "cb2076d1-c4b1-479c-ab7e-88672a439b8e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1108", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "7d675401-1afa-4f8b-b09d-29188c12485f", + "x-ms-routing-request-id": "WESTUS2:20210614T233821Z:cb2076d1-c4b1-479c-ab7e-88672a439b8e" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9720\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780/providers/Microsoft.Compute/availabilitySets/test-aset9720\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset1121\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5765/providers/Microsoft.Compute/availabilitySets/test-aset1121\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4062,13 +4230,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2780/providers/Microsoft.Compute/availabilitySets/test-aset9720?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5765/providers/Microsoft.Compute/availabilitySets/test-aset1121?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cae65aec1024a4eaa59e427af8b40e1f", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7caaa097dfde864cc565384d74790a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -4076,7 +4244,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:19 GMT", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4085,18 +4253,63 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cae65aec1024a4eaa59e427af8b40e1f", - "x-ms-correlation-request-id": "53054c32-6ddd-4837-8ba7-2b58cbd8a203", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "0de28789-0670-42c2-8697-8c2ffea67a3d", - "x-ms-routing-request-id": "WESTUS2:20210507T211619Z:53054c32-6ddd-4837-8ba7-2b58cbd8a203" + "x-ms-client-request-id": "f7caaa097dfde864cc565384d74790a6", + "x-ms-correlation-request-id": "580a42f1-cdb4-4a87-b3f8-4573175d25b6", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1144", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "a8226360-e9b3-468a-9c3c-c8c2366ac514", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:580a42f1-cdb4-4a87-b3f8-4573175d25b6" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset6001?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.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6205d20f7ce8b2f4a6f8291bece20138", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9a51bf8a-c5ea-4c40-9744-bba059b66863", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "9a51bf8a-c5ea-4c40-9744-bba059b66863", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:9a51bf8a-c5ea-4c40-9744-bba059b66863" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } } ], "Variables": { - "RandomSeed": "1755045381", + "RandomSeed": "1823258010", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json index 786d488d9aa6..0901d8862bcd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get().json @@ -6,31 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb5085-4ce1cdbd20ae908f.", - "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": "41b8d0a09ff721b9c78ce1ebf41c634e", + "Request-Id": "|cc332327-4095a54af43549bb.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b893ca49869c92a7d90d7032135c914b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6df47c2-cb82-4809-b8a1-a461252480c7", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "f6df47c2-cb82-4809-b8a1-a461252480c7", - "x-ms-routing-request-id": "WESTUS2:20210507T211620Z:f6df47c2-cb82-4809-b8a1-a461252480c7" + "x-ms-correlation-request-id": "415f6a17-b5bc-4a70-aa3d-5246a185b7cd", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "415f6a17-b5bc-4a70-aa3d-5246a185b7cd", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:415f6a17-b5bc-4a70-aa3d-5246a185b7cd" }, "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", @@ -43,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7126?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9664?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-156d572c175e644ab9d470e0400704e2-ad4fc550854abd44-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": "b39e8d091614f126b88acec495a4d069", + "traceparent": "00-7e23c5d94214964380eba342496c0802-6bdbe6c6b36cfd4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4e217b5eb6b364f3605ca572af4d718e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da781a8d-e8c8-44ec-810f-a6a4390c6c50", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "da781a8d-e8c8-44ec-810f-a6a4390c6c50", - "x-ms-routing-request-id": "WESTUS2:20210507T211621Z:da781a8d-e8c8-44ec-810f-a6a4390c6c50" + "x-ms-correlation-request-id": "24e22ec5-e381-4b40-9dd1-95de299689dc", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "24e22ec5-e381-4b40-9dd1-95de299689dc", + "x-ms-routing-request-id": "WESTUS2:20210614T233823Z:24e22ec5-e381-4b40-9dd1-95de299689dc" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126", - "name": "testrg7126", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664", + "name": "testrg9664", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -92,24 +96,24 @@ "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 )", - "x-ms-client-request-id": "c278dd4214319efaf1cc852645cd2821", + "x-ms-client-request-id": "39f8e4740869030b322ae1d0641f5265", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30b93927-b32c-439b-ac8e-f725e4b6bd23", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "30b93927-b32c-439b-ac8e-f725e4b6bd23", - "x-ms-routing-request-id": "WESTUS2:20210507T211621Z:30b93927-b32c-439b-ac8e-f725e4b6bd23" + "x-ms-correlation-request-id": "8834f420-d187-467c-8d83-0ec95248cc47", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "8834f420-d187-467c-8d83-0ec95248cc47", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:8834f420-d187-467c-8d83-0ec95248cc47" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "89de450e8bd192ba4f3f15eb5c32e711", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "863bee84963f9f13533c2a021f2abffe", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4027,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "89de450e8bd192ba4f3f15eb5c32e711", - "x-ms-correlation-request-id": "047d1a64-78a9-41d3-91c0-9abe51cc89e9", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1192", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "0edbc4e3-843b-40ea-90ba-7d66e38b5e42", - "x-ms-routing-request-id": "WESTUS2:20210507T211622Z:047d1a64-78a9-41d3-91c0-9abe51cc89e9" + "x-ms-client-request-id": "863bee84963f9f13533c2a021f2abffe", + "x-ms-correlation-request-id": "1b678f27-b17c-4ede-93ba-fc7b9a425fdd", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1107", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "c1e660a5-7b8b-4030-a480-ff7fe0beeb48", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:1b678f27-b17c-4ede-93ba-fc7b9a425fdd" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1147\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset893\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,22 +4229,22 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5f87a2a5e0f1b77e23e672f2ff0f41bf", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5f2a0c520736de2bd058e52dde08e308", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "436", + "Content-Length": "434", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4087,17 +4253,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5f87a2a5e0f1b77e23e672f2ff0f41bf", - "x-ms-correlation-request-id": "6b2e4935-3e2b-4dfb-8d42-ee7f211ad12d", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31992", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "c581e830-afb9-425d-96a0-1eddc98f667e", - "x-ms-routing-request-id": "WESTUS2:20210507T211622Z:6b2e4935-3e2b-4dfb-8d42-ee7f211ad12d" + "x-ms-client-request-id": "5f2a0c520736de2bd058e52dde08e308", + "x-ms-correlation-request-id": "f1079668-adce-45ed-9e23-806a59090fc4", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31929", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "d3b01ce8-3ac8-4cb1-8532-9031ab5a4f56", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:f1079668-adce-45ed-9e23-806a59090fc4" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1147\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7126/providers/Microsoft.Compute/availabilitySets/test-aset1147\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset893\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4114,7 +4280,7 @@ } ], "Variables": { - "RandomSeed": "1689496279", + "RandomSeed": "186390502", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json index 9b355f3dc5b8..d257dbca5138 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Get()Async.json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "405e92b7daaa3088b4b6734a0148631e", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "71bf6f2ab5aa79a818a17599b208435a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e04034d-0131-4085-b726-fb7c2636a292", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "0e04034d-0131-4085-b726-fb7c2636a292", - "x-ms-routing-request-id": "WESTUS2:20210507T211620Z:0e04034d-0131-4085-b726-fb7c2636a292" + "x-ms-correlation-request-id": "0b9eaa95-4a24-4433-a4af-9c1ac896ee72", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "0b9eaa95-4a24-4433-a4af-9c1ac896ee72", + "x-ms-routing-request-id": "WESTUS2:20210614T233822Z:0b9eaa95-4a24-4433-a4af-9c1ac896ee72" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9643?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8035?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-37a07f1895365a41a177eb6201849235-de9e060e2bd3c541-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": "647954b596d9b7c8e6ab92dd5b17e514", + "traceparent": "00-b71abe45f334fc46ad6d95e4c0c41467-ea454a9c673c5d46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1773d71d66eac83dfcf1935d3ae13a7f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbe71c7d-53a0-49f8-ab08-855dffc9b9f0", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "fbe71c7d-53a0-49f8-ab08-855dffc9b9f0", - "x-ms-routing-request-id": "WESTUS2:20210507T211621Z:fbe71c7d-53a0-49f8-ab08-855dffc9b9f0" + "x-ms-correlation-request-id": "6859345c-4cea-407c-8308-3565f0e76adc", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "6859345c-4cea-407c-8308-3565f0e76adc", + "x-ms-routing-request-id": "WESTUS2:20210614T233823Z:6859345c-4cea-407c-8308-3565f0e76adc" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643", - "name": "testrg9643", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035", + "name": "testrg8035", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-60190a8d5687b14295acd3eaa1ef8dd3-0357dd9a4e3d1849-00", + "traceparent": "00-0a62c22f2423f044bc37a2ee19621ed6-6a52708af1abd74b-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": "09b835c652f840a5084cf3c3005404fe", + "x-ms-client-request-id": "1782b3296283a2460bd743a836c293cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:20 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd121f77-36e8-4d63-9526-9e73096cb3be", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "cd121f77-36e8-4d63-9526-9e73096cb3be", - "x-ms-routing-request-id": "WESTUS2:20210507T211621Z:cd121f77-36e8-4d63-9526-9e73096cb3be" + "x-ms-correlation-request-id": "34cb2cb5-ff1c-4af6-9e77-96e383263657", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "34cb2cb5-ff1c-4af6-9e77-96e383263657", + "x-ms-routing-request-id": "WESTUS2:20210614T233823Z:34cb2cb5-ff1c-4af6-9e77-96e383263657" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-60190a8d5687b14295acd3eaa1ef8dd3-b0d26bcbdd7d0b40-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e08f25fcdeed96fb89c32ef552599f8e", + "traceparent": "00-0a62c22f2423f044bc37a2ee19621ed6-d3d73d4a78b7c745-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92a34f5e3f008108a8adc4141cdebf3b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,9 +4194,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e08f25fcdeed96fb89c32ef552599f8e", - "x-ms-correlation-request-id": "f5e78a28-0ecc-487e-95cc-0408d39c57f5", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "0173fac8-0ee1-492e-ae83-b4ac189261c3", - "x-ms-routing-request-id": "WESTUS2:20210507T211622Z:f5e78a28-0ecc-487e-95cc-0408d39c57f5" + "x-ms-client-request-id": "92a34f5e3f008108a8adc4141cdebf3b", + "x-ms-correlation-request-id": "304ff52f-6e27-4a2d-b782-237c931cc746", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1106", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-request-id": "11e89fd5-5809-4575-97a6-0ce878b6ee8c", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:304ff52f-6e27-4a2d-b782-237c931cc746" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1983\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset886\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,22 +4230,22 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f15edf8e3355e8bc39227f3524afedaf", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "92dc8e00ec96e96caa006ed59e32862d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "436", + "Content-Length": "434", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:21 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4088,17 +4254,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f15edf8e3355e8bc39227f3524afedaf", - "x-ms-correlation-request-id": "4d31ae73-e0e7-458e-b653-99868a84d40c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31993", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "c09d67d3-cfde-4f46-94a0-3fceff8f0133", - "x-ms-routing-request-id": "WESTUS2:20210507T211622Z:4d31ae73-e0e7-458e-b653-99868a84d40c" + "x-ms-client-request-id": "92dc8e00ec96e96caa006ed59e32862d", + "x-ms-correlation-request-id": "df355f48-87c3-4e4a-8657-36f1a389c169", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31928", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "f58c58d5-ee59-4a56-9706-a2e878da7d0b", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:df355f48-87c3-4e4a-8657-36f1a389c169" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1983\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9643/providers/Microsoft.Compute/availabilitySets/test-aset1983\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset886\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4115,7 +4281,7 @@ } ], "Variables": { - "RandomSeed": "1157943567", + "RandomSeed": "1877196516", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json similarity index 52% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json index 6cbb667c3104..42a5418e27ff 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion().json @@ -6,34 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-61e63afe53df2447ba23da07cce342ff-599d32c678766e44-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "30bad03c75065f404fd3a31e715c4ee0", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "841427dead8eed1288f3da5f004eaa6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6472816a-0f07-4f80-ac5e-dc551c5f5c12", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "6472816a-0f07-4f80-ac5e-dc551c5f5c12", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:6472816a-0f07-4f80-ac5e-dc551c5f5c12" + "x-ms-correlation-request-id": "edcf71ec-dad4-4040-801d-c5db11b657e3", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "edcf71ec-dad4-4040-801d-c5db11b657e3", + "x-ms-routing-request-id": "WESTUS2:20210614T233824Z:edcf71ec-dad4-4040-801d-c5db11b657e3" }, "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", @@ -45,40 +45,84 @@ } } }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg725?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-b37d15bad04c294387feb1ffaefa2bcd-106a9e98fa0c2b49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "29dfaf6e86e55ac1e6d61714ca41c396", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33aba45c-5967-449c-8d77-992061328c09", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "33aba45c-5967-449c-8d77-992061328c09", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:33aba45c-5967-449c-8d77-992061328c09" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg725", + "name": "testrg725", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, { "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-be7f04293171b443a427d2618593a584-5abf1c7807f17b4e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9d0b5bc88ddcaf428b94d99f833fa485", + "traceparent": "00-daae84f7524443448ff23045024dad4f-7be6f7fc27d6ec4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5821602e5ee2824deb1bfc57fe994db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85723dca-3a4e-4e7e-afe1-30bf81f3cc80", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "85723dca-3a4e-4e7e-afe1-30bf81f3cc80", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:85723dca-3a4e-4e7e-afe1-30bf81f3cc80" + "x-ms-correlation-request-id": "8c5b7738-192e-462e-902e-98e9f920fa9b", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "8c5b7738-192e-462e-902e-98e9f920fa9b", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:8c5b7738-192e-462e-902e-98e9f920fa9b" }, "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", @@ -96,34 +140,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3dfbc64945b93f46a23a75ebf73e17c0-78b6fcb56f972444-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "95a0e861dafa8a6733778ca1e817a76b", + "traceparent": "00-0356f86f046de3458f055429ef683ee5-6325992949894e4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e93e191aed6da1f85329a7d7fbd8bdb2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73a49482-5ebd-4bf7-b2f2-92d01610d0b8", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "73a49482-5ebd-4bf7-b2f2-92d01610d0b8", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:73a49482-5ebd-4bf7-b2f2-92d01610d0b8" + "x-ms-correlation-request-id": "5c08a32b-002b-4d83-a891-d59d47304dce", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "5c08a32b-002b-4d83-a891-d59d47304dce", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:5c08a32b-002b-4d83-a891-d59d47304dce" }, "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", @@ -136,17 +181,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970?api-version=1500-10-10", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg725?api-version=1500-10-10", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bce8362a9773fb48bd2d8c26a2f4a06a-ad11706550830145-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d7f674f17285ae1f8e0aa4719ca1dc10", + "traceparent": "00-a2be1bde0f645048bd210d6178748ca0-76707d3f86455645-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "37fdc816a52788f28bb74a34c6fbdbfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -155,15 +197,15 @@ "Cache-Control": "no-cache", "Content-Length": "619", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "884fe464-e28d-41f2-b2d4-d2b9a98e90a6", + "x-ms-correlation-request-id": "e509cf85-de1d-4e2c-87bb-eeb23cad9acc", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "884fe464-e28d-41f2-b2d4-d2b9a98e90a6", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:884fe464-e28d-41f2-b2d4-d2b9a98e90a6" + "x-ms-request-id": "e509cf85-de1d-4e2c-87bb-eeb23cad9acc", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:e509cf85-de1d-4e2c-87bb-eeb23cad9acc" }, "ResponseBody": { "error": { @@ -174,7 +216,7 @@ } ], "Variables": { - "RandomSeed": "1638627041", + "RandomSeed": "1511978985", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json similarity index 52% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json index fcb44a421559..474fed92ae33 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadApiVersion().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadApiVersion()Async.json @@ -6,34 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40818142713eb642a4b65f7c67a4e4c8-5595c5d366b8e74b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "73dd40ef3a162c97ff1a8572cffe6c23", + "traceparent": "00-a324b859d67f5049b6148623e5b90934-3433f76f8c38fa45-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1543ec64203e75b54296dc662d745335", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afeb6741-a110-4dda-a46f-a8b04c7b2721", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "afeb6741-a110-4dda-a46f-a8b04c7b2721", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:afeb6741-a110-4dda-a46f-a8b04c7b2721" + "x-ms-correlation-request-id": "ae93ab09-a415-472e-8661-8c8b5b795ff2", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "ae93ab09-a415-472e-8661-8c8b5b795ff2", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:ae93ab09-a415-472e-8661-8c8b5b795ff2" }, "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", @@ -45,40 +46,83 @@ } } }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6232?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-211d03576355444d9406242c5b8902bd-6b5e11cf9970c04a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9cf0fdc85410a953201b3af46d60497b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a5481c41-7b50-4321-943e-5318561d6d5d", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "a5481c41-7b50-4321-943e-5318561d6d5d", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:a5481c41-7b50-4321-943e-5318561d6d5d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6232", + "name": "testrg6232", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, { "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c710d8f5737ab44d8aa9f6cf32b1d888-1905aa100f2c2c44-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "79839a8b0a86501d4939e0b6b503eaa5", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b341daf4674bd8c414e1f14854ed4b91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e386c9cd-4ca2-4c35-87e2-32ac30270e82", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "e386c9cd-4ca2-4c35-87e2-32ac30270e82", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:e386c9cd-4ca2-4c35-87e2-32ac30270e82" + "x-ms-correlation-request-id": "58fc6e88-d47c-49ae-b3e7-b103c3a51e3c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "58fc6e88-d47c-49ae-b3e7-b103c3a51e3c", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:58fc6e88-d47c-49ae-b3e7-b103c3a51e3c" }, "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", @@ -96,34 +140,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-207988559ff1ba4caeb55138e07db56b-c91a89340040de4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "730ac5cc6749baf3668a6b2a926e9812", + "traceparent": "00-ea1a1473567c4845b4e4ec7dd654449d-603135d01e43c545-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "26b3373f7fbc9853ef6b1e047b80d535", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18da9ae0-1bdf-479b-85d6-9413e7dacf59", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "18da9ae0-1bdf-479b-85d6-9413e7dacf59", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:18da9ae0-1bdf-479b-85d6-9413e7dacf59" + "x-ms-correlation-request-id": "30d1761b-cb62-458d-bd9e-3419f0e698b5", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "30d1761b-cb62-458d-bd9e-3419f0e698b5", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:30d1761b-cb62-458d-bd9e-3419f0e698b5" }, "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", @@ -136,17 +181,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898?api-version=1500-10-10", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6232?api-version=1500-10-10", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f1fa3638b5ae614fb13e604886a379c8-4527e9944f9dd040-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ee157be584f6e4d0238d2add5ae177fb", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a39eb93821260883918882e620b5532", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -155,15 +196,15 @@ "Cache-Control": "no-cache", "Content-Length": "619", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3c04d0a-431c-4788-b1d8-af89ee984dbb", + "x-ms-correlation-request-id": "13b74336-7f6e-4a22-97c7-4943d934d048", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "d3c04d0a-431c-4788-b1d8-af89ee984dbb", - "x-ms-routing-request-id": "WESTUS2:20210405T233851Z:d3c04d0a-431c-4788-b1d8-af89ee984dbb" + "x-ms-request-id": "13b74336-7f6e-4a22-97c7-4943d934d048", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:13b74336-7f6e-4a22-97c7-4943d934d048" }, "ResponseBody": { "error": { @@ -174,7 +215,7 @@ } ], "Variables": { - "RandomSeed": "1711275273", + "RandomSeed": "1863182763", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json similarity index 55% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json index 30b86322c79b..5eea51e55776 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace().json @@ -6,34 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ee03548b15ce2442bdf06e10e9c43c8e-78507550a5616841-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5151118777d6bfec9b643321ecf9b10b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a8581256d9d5ea437cfa45cc1e4bd093", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1ea9c19-ee3d-4ce6-ab3b-36617ec9e406", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "d1ea9c19-ee3d-4ce6-ab3b-36617ec9e406", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:d1ea9c19-ee3d-4ce6-ab3b-36617ec9e406" + "x-ms-correlation-request-id": "a33a5ea7-828c-4049-bca5-d304f4f79639", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a33a5ea7-828c-4049-bca5-d304f4f79639", + "x-ms-routing-request-id": "WESTUS2:20210614T233825Z:a33a5ea7-828c-4049-bca5-d304f4f79639" }, "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", @@ -46,47 +46,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9022?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eb22c1d5add20849b40eea58ed96315e-0e5a6da09b6f8d4e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "62ea807bb0389daebb529b8e1c9e6e42", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-621a00ebc46a854789131f697b3fb186-a78fdfa5e3a3654e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9351bbe22d84e3f86a665b06c085caf3", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c074ab7d-9d4b-4142-a698-3b3188423cf7", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "c074ab7d-9d4b-4142-a698-3b3188423cf7", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:c074ab7d-9d4b-4142-a698-3b3188423cf7" + "x-ms-correlation-request-id": "8a4583f9-bccd-4a71-aee2-a2e3b604a96f", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "8a4583f9-bccd-4a71-aee2-a2e3b604a96f", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:8a4583f9-bccd-4a71-aee2-a2e3b604a96f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9022", + "name": "testrg9022", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +94,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2332bdaeb138f644995479542e98f289-0016da1e30b1af45-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9ee983b77f4c319affe45aa6118259b2", + "traceparent": "00-b0b74af9b502084db833839af6f32e2d-8049d82164d0d845-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c042382e91386aba6dae6da6f5cb3f5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b8a9f76-ae8d-434b-842f-3da126738c4b", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "6b8a9f76-ae8d-434b-842f-3da126738c4b", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:6b8a9f76-ae8d-434b-842f-3da126738c4b" + "x-ms-correlation-request-id": "eceac2b3-92d9-455b-b7bb-96ca035d735d", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "eceac2b3-92d9-455b-b7bb-96ca035d735d", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:eceac2b3-92d9-455b-b7bb-96ca035d735d" }, "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", @@ -141,12 +140,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b2bd96fc015b3743ba8147731d89f80f-f3d50c3922b31040-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f3b08228aa34d7bb63b39684db5da2fd", + "traceparent": "00-b20b9ad64a76c6498f8cb00916f8c01d-3e4f4d525953c84f-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": "842fc289f299e5d15fc46a73e7e4bb75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -155,16 +151,16 @@ "Cache-Control": "no-cache", "Content-Length": "126", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7845a48b-b5dc-4c83-b28c-d223fad8b658", + "x-ms-correlation-request-id": "7ef68835-9b58-4152-a0ae-f4113ef1fd97", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "7845a48b-b5dc-4c83-b28c-d223fad8b658", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:7845a48b-b5dc-4c83-b28c-d223fad8b658" + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "7ef68835-9b58-4152-a0ae-f4113ef1fd97", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:7ef68835-9b58-4152-a0ae-f4113ef1fd97" }, "ResponseBody": { "error": { @@ -175,7 +171,7 @@ } ], "Variables": { - "RandomSeed": "1894753675", + "RandomSeed": "1198128690", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json similarity index 55% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json index c590f929370a..d6d2f8ae4c7e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsBadNameSpace()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsBadNameSpace()Async.json @@ -6,34 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-00e93a89db60e74a88959a9bdc9e9861-e6a2e179319ebd4e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fd430b3dc5813912b8a404965658e0f0", + "traceparent": "00-80851c8f4724214894d3338465129d8a-e03f4e9586952f47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "073b06d086f433c50a935134d20ea135", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd49cec7-3b21-45c1-a276-badd1582faac", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "bd49cec7-3b21-45c1-a276-badd1582faac", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:bd49cec7-3b21-45c1-a276-badd1582faac" + "x-ms-correlation-request-id": "16e00918-e96f-4b31-8b86-8a6fc1066193", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "16e00918-e96f-4b31-8b86-8a6fc1066193", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:16e00918-e96f-4b31-8b86-8a6fc1066193" }, "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", @@ -46,47 +47,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg356?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fec7a3bd791f3f41bac7f8e281bd0550-94f86febaaac354e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "69271b0e12a9d83718cc929ba3a56fb7", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-731c920f1a34d34d9feb9c4a1ba7af08-2a56b4f1dd9ffd4d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "98e20acf79420421c9beb456f751ce51", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "860b19cd-d6a2-4638-bfc7-537d232e33e0", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "860b19cd-d6a2-4638-bfc7-537d232e33e0", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:860b19cd-d6a2-4638-bfc7-537d232e33e0" + "x-ms-correlation-request-id": "bfe62bae-e85e-49f7-bb63-7c8edbad0b29", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "bfe62bae-e85e-49f7-bb63-7c8edbad0b29", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:bfe62bae-e85e-49f7-bb63-7c8edbad0b29" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg356", + "name": "testrg356", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +95,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9765ef57ad3f6a4996b751db6a325586-f1da13913e978445-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a811fb38a4e909fb55310a84cbc96e79", + "traceparent": "00-b807a40accdd2d44a2f834d245da5096-19a7fa96dba2734a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b7544fe10babd702945625c19c95e4b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31042151-e83e-4de6-8dcc-f566c93e5fd1", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "31042151-e83e-4de6-8dcc-f566c93e5fd1", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:31042151-e83e-4de6-8dcc-f566c93e5fd1" + "x-ms-correlation-request-id": "42f315cb-55dd-4313-a978-bec36e1f4800", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "42f315cb-55dd-4313-a978-bec36e1f4800", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:42f315cb-55dd-4313-a978-bec36e1f4800" }, "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", @@ -141,12 +141,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-93fc35535bf7bd4382abe32840ce8bcb-f6cea3b521900d49-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b95b700c72482ad0d36be4b532779512", + "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": "2e082036635b8d8e19032ac810dc1241", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -155,16 +151,16 @@ "Cache-Control": "no-cache", "Content-Length": "126", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae6552af-ac3a-47fd-aa9a-949647368b86", + "x-ms-correlation-request-id": "54fc7c13-c942-4745-909c-dce982f818c3", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "ae6552af-ac3a-47fd-aa9a-949647368b86", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:ae6552af-ac3a-47fd-aa9a-949647368b86" + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "54fc7c13-c942-4745-909c-dce982f818c3", + "x-ms-routing-request-id": "WESTUS2:20210614T233826Z:54fc7c13-c942-4745-909c-dce982f818c3" }, "ResponseBody": { "error": { @@ -175,7 +171,7 @@ } ], "Variables": { - "RandomSeed": "1334816672", + "RandomSeed": "1781216751", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException().json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException().json index a22ce4485571..894aa0343259 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException().json @@ -6,34 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eb906cd611d2f344811d2aa0621b5ee8-13e87fcbe9401f4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "23ac95ff522586a33b684b04dca6535d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "85327e0e0f9e0d7518ec600503495063", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b01c92d9-9e64-42c2-a4c7-5e0397cf3d7e", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "b01c92d9-9e64-42c2-a4c7-5e0397cf3d7e", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:b01c92d9-9e64-42c2-a4c7-5e0397cf3d7e" + "x-ms-correlation-request-id": "62c27807-de14-475a-9e03-d62df212327a", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "62c27807-de14-475a-9e03-d62df212327a", + "x-ms-routing-request-id": "WESTUS2:20210614T233827Z:62c27807-de14-475a-9e03-d62df212327a" }, "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", @@ -46,47 +46,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5093?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-daeac4d4bf87ed489f3c3a603e8c8276-68033b357d160941-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b42c6cbcf4125dd13aeb17e2d5b2819b", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-951008b3c41372409fe2bef2dd5d1c30-6a3dab2b081e7548-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3142d4b48574aa20efe549109df2baa6", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87084e85-af9e-45fb-a2e1-75e7ad0dff09", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "87084e85-af9e-45fb-a2e1-75e7ad0dff09", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:87084e85-af9e-45fb-a2e1-75e7ad0dff09" + "x-ms-correlation-request-id": "9760ac49-b7cd-44e0-a502-4644ca79d29e", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "9760ac49-b7cd-44e0-a502-4644ca79d29e", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:9760ac49-b7cd-44e0-a502-4644ca79d29e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5093", + "name": "testrg5093", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +94,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b95f7e3d3c8a0847b8da8d475b84f2c4-fd2c57681da7f94f-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ed695f8b84ed2fe320a9bb5cd7827c85", + "traceparent": "00-ee85414131239b429e6f161e95e09dab-19d915b1c098fd47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8b1937520fe3c3dfd8297cfc7ff294b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7217a879-e080-459e-bac9-97cc2ae961be", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "7217a879-e080-459e-bac9-97cc2ae961be", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:7217a879-e080-459e-bac9-97cc2ae961be" + "x-ms-correlation-request-id": "3a0e355a-f00e-4cd4-8a5a-1bcacf7f9565", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "3a0e355a-f00e-4cd4-8a5a-1bcacf7f9565", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:3a0e355a-f00e-4cd4-8a5a-1bcacf7f9565" }, "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", @@ -141,29 +140,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-bebe905a763b8f4bb44ee3667b277255-d1c6ab4aa9d5204d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2de56ed162800aa1c34fe93a3ac0b188", + "traceparent": "00-f84918535f905d4ea0fd4cb4e9fca5ac-b116515fca95564a-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": "1d08729657c0f99912dbaf292cfc7af9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52242", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56311da9-d5f6-484e-8ebd-09859ed22dab", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "56311da9-d5f6-484e-8ebd-09859ed22dab", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:56311da9-d5f6-484e-8ebd-09859ed22dab" + "x-ms-correlation-request-id": "a74dda3d-4c7e-4c1e-9140-3448fa76259b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a74dda3d-4c7e-4c1e-9140-3448fa76259b", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:a74dda3d-4c7e-4c1e-9140-3448fa76259b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -243,9 +239,11 @@ "Switzerland North", "Germany 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", @@ -316,9 +314,11 @@ "Switzerland North", "Germany 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", @@ -484,9 +484,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -527,9 +539,11 @@ "Switzerland North", "Germany 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", @@ -600,9 +614,11 @@ "Switzerland North", "Germany 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", @@ -769,9 +785,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -812,9 +840,11 @@ "Switzerland North", "Germany 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", @@ -886,9 +916,11 @@ "Switzerland North", "Germany 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", @@ -960,9 +992,11 @@ "Switzerland North", "Germany 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", @@ -1033,9 +1067,11 @@ "Switzerland North", "Germany 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", @@ -1108,9 +1144,11 @@ "Switzerland North", "Germany 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", @@ -1183,9 +1221,11 @@ "Switzerland North", "Germany 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", @@ -1214,6 +1254,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1269,9 +1310,11 @@ "Switzerland North", "Germany 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", @@ -1342,9 +1385,11 @@ "Switzerland North", "Germany 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", @@ -1414,9 +1459,11 @@ "Switzerland North", "Germany 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", @@ -1477,9 +1524,11 @@ "Switzerland North", "Germany 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", @@ -1549,9 +1598,11 @@ "Switzerland North", "Germany 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", @@ -1614,9 +1665,11 @@ "Switzerland North", "Germany 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", @@ -1679,9 +1732,11 @@ "Switzerland North", "Germany 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", @@ -1752,9 +1807,11 @@ "Switzerland North", "Germany 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", @@ -1817,7 +1874,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1860,9 +1918,11 @@ "Switzerland North", "Germany 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", @@ -1914,9 +1974,11 @@ "Switzerland North", "Germany 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", @@ -1967,9 +2029,11 @@ "Switzerland North", "Germany 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", @@ -2019,9 +2083,11 @@ "Switzerland North", "Germany 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", @@ -2066,6 +2132,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2109,9 +2176,11 @@ "Switzerland North", "Germany 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" @@ -2155,9 +2224,11 @@ "Switzerland North", "Germany 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" @@ -2201,9 +2272,11 @@ "Switzerland North", "Germany 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", @@ -2387,9 +2460,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", @@ -2435,9 +2510,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", @@ -2483,9 +2560,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", @@ -2531,9 +2610,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", @@ -2579,9 +2660,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", @@ -2627,9 +2710,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", @@ -2787,9 +2872,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" @@ -2830,9 +2927,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", @@ -2895,9 +2994,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", @@ -2959,9 +3060,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", @@ -3008,9 +3111,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", @@ -3054,7 +3159,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3194,9 +3301,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3236,7 +3355,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3280,7 +3401,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3324,7 +3447,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3367,7 +3492,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3410,7 +3537,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3453,7 +3582,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3496,7 +3627,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3539,7 +3672,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3583,9 +3718,11 @@ "Switzerland North", "Germany 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", @@ -3649,9 +3786,11 @@ "Switzerland North", "Germany 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", @@ -3701,9 +3840,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", @@ -3846,9 +3987,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3889,9 +4042,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", @@ -4034,9 +4189,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4047,17 +4214,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898/providers/Microsoft.Compute/availabilitySets/testavset?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5093/providers/Microsoft.Compute/availabilitySets/testavset?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4ebccb871fdd0c42bbcb590112d04811-0498bde5aedf9b4c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7d78b0e6653d377088fc9369387485b7", + "traceparent": "00-f84918535f905d4ea0fd4cb4e9fca5ac-275f7e5133dd7e41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b68e5ea58a9e9346970533f1ed50e2ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -4066,26 +4230,26 @@ "Cache-Control": "no-cache", "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ad4c3ef-9fa1-49f7-a9a2-f3233ebcb97b", + "x-ms-correlation-request-id": "eefb3ba6-00f0-40fb-9609-8c8427246268", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "9ad4c3ef-9fa1-49f7-a9a2-f3233ebcb97b", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:9ad4c3ef-9fa1-49f7-a9a2-f3233ebcb97b" + "x-ms-request-id": "eefb3ba6-00f0-40fb-9609-8c8427246268", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:eefb3ba6-00f0-40fb-9609-8c8427246268" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Compute/availabilitySets/testavset\u0027 under resource group \u0027testRg-898\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Compute/availabilitySets/testavset\u0027 under resource group \u0027testrg5093\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { - "RandomSeed": "802224663", + "RandomSeed": "885575683", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException()Async.json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException()Async.json index 129407ae1e75..5087ce5a2440 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsConfirmException()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsConfirmException()Async.json @@ -6,34 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-151642fda396494da90d4da83597b7d9-5ec48acd0917f34b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b112e4146692a8bb02632ac5f91757bd", + "traceparent": "00-b7c2be5725edc5468800e9c8d7d15d32-453cc189aa9ade4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "655b034afa0b54d4dc7068cd137b0ab7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "690b21c9-a199-4534-a5fe-3b5da14a6f04", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "690b21c9-a199-4534-a5fe-3b5da14a6f04", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:690b21c9-a199-4534-a5fe-3b5da14a6f04" + "x-ms-correlation-request-id": "8a8a067f-7eb9-41ca-a5ce-fede428c7a3a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "8a8a067f-7eb9-41ca-a5ce-fede428c7a3a", + "x-ms-routing-request-id": "WESTUS2:20210614T233827Z:8a8a067f-7eb9-41ca-a5ce-fede428c7a3a" }, "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", @@ -46,47 +47,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6327?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0636b98f43764a4f9563b206e3aa5570-ce2aaf1128a2c840-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7e8ab70c181dbc90cacbba837fca06f1", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-31481dcbc20a124d8041a3b5dcf4b838-f35bcd32601bba4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "50d43ed817b82321eecb040511fac7a3", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "115e0b40-19b6-4ea7-b638-65292c16b182", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "115e0b40-19b6-4ea7-b638-65292c16b182", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:115e0b40-19b6-4ea7-b638-65292c16b182" + "x-ms-correlation-request-id": "95dd2287-21b1-4880-b04b-28b4236346fb", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "95dd2287-21b1-4880-b04b-28b4236346fb", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:95dd2287-21b1-4880-b04b-28b4236346fb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6327", + "name": "testrg6327", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +95,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-59b5b1e27ec15944843ea787ad1b1adc-1ff7d4ea5065b443-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "898eb309b1f0c9399d3293c1a876a2ba", + "traceparent": "00-dd088890c8b89e408374b576d0d724b8-ca81c5d32e04dd4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ff903985d25c03500604be10a3a0b817", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29945abf-6d48-4c2c-ae47-1f1fdd86c53a", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "29945abf-6d48-4c2c-ae47-1f1fdd86c53a", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:29945abf-6d48-4c2c-ae47-1f1fdd86c53a" + "x-ms-correlation-request-id": "8f58b7cc-7d46-4e32-a59b-04699226a2d1", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "8f58b7cc-7d46-4e32-a59b-04699226a2d1", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:8f58b7cc-7d46-4e32-a59b-04699226a2d1" }, "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", @@ -141,29 +141,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-97c0a9b97c5e474e8c5ce9af2285fd7a-2aad3fccf855ad4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "85c3ed009922fcd75356e6c7ab382837", + "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": "af5407444689ec913a421c2fd04eca76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52242", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e86693f1-c86d-4d94-9df0-084af78a3ff2", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "e86693f1-c86d-4d94-9df0-084af78a3ff2", - "x-ms-routing-request-id": "WESTUS2:20210405T233852Z:e86693f1-c86d-4d94-9df0-084af78a3ff2" + "x-ms-correlation-request-id": "7738505d-d4db-42e9-a597-e36344cd0327", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "7738505d-d4db-42e9-a597-e36344cd0327", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:7738505d-d4db-42e9-a597-e36344cd0327" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -243,9 +239,11 @@ "Switzerland North", "Germany 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", @@ -316,9 +314,11 @@ "Switzerland North", "Germany 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", @@ -484,9 +484,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -527,9 +539,11 @@ "Switzerland North", "Germany 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", @@ -600,9 +614,11 @@ "Switzerland North", "Germany 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", @@ -769,9 +785,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -812,9 +840,11 @@ "Switzerland North", "Germany 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", @@ -886,9 +916,11 @@ "Switzerland North", "Germany 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", @@ -960,9 +992,11 @@ "Switzerland North", "Germany 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", @@ -1033,9 +1067,11 @@ "Switzerland North", "Germany 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", @@ -1108,9 +1144,11 @@ "Switzerland North", "Germany 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", @@ -1183,9 +1221,11 @@ "Switzerland North", "Germany 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", @@ -1214,6 +1254,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1269,9 +1310,11 @@ "Switzerland North", "Germany 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", @@ -1342,9 +1385,11 @@ "Switzerland North", "Germany 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", @@ -1414,9 +1459,11 @@ "Switzerland North", "Germany 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", @@ -1477,9 +1524,11 @@ "Switzerland North", "Germany 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", @@ -1549,9 +1598,11 @@ "Switzerland North", "Germany 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", @@ -1614,9 +1665,11 @@ "Switzerland North", "Germany 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", @@ -1679,9 +1732,11 @@ "Switzerland North", "Germany 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", @@ -1752,9 +1807,11 @@ "Switzerland North", "Germany 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", @@ -1817,7 +1874,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1860,9 +1918,11 @@ "Switzerland North", "Germany 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", @@ -1914,9 +1974,11 @@ "Switzerland North", "Germany 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", @@ -1967,9 +2029,11 @@ "Switzerland North", "Germany 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", @@ -2019,9 +2083,11 @@ "Switzerland North", "Germany 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", @@ -2066,6 +2132,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2109,9 +2176,11 @@ "Switzerland North", "Germany 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" @@ -2155,9 +2224,11 @@ "Switzerland North", "Germany 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" @@ -2201,9 +2272,11 @@ "Switzerland North", "Germany 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", @@ -2387,9 +2460,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", @@ -2435,9 +2510,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", @@ -2483,9 +2560,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", @@ -2531,9 +2610,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", @@ -2579,9 +2660,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", @@ -2627,9 +2710,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", @@ -2787,9 +2872,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" @@ -2830,9 +2927,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", @@ -2895,9 +2994,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", @@ -2959,9 +3060,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", @@ -3008,9 +3111,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", @@ -3054,7 +3159,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3194,9 +3301,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3236,7 +3355,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3280,7 +3401,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3324,7 +3447,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3367,7 +3492,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3410,7 +3537,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3453,7 +3582,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3496,7 +3627,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3539,7 +3672,9 @@ "Australia Central", "Switzerland North", "Germany West Central", - "Norway East" + "Norway East", + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3583,9 +3718,11 @@ "Switzerland North", "Germany 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", @@ -3649,9 +3786,11 @@ "Switzerland North", "Germany 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", @@ -3701,9 +3840,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", @@ -3846,9 +3987,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3889,9 +4042,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", @@ -4034,9 +4189,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4047,45 +4214,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970/providers/Microsoft.Compute/availabilitySets/testavset?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6327/providers/Microsoft.Compute/availabilitySets/testavset?api-version=2021-04-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d5823b88ca8ec74ab34cd5024fa24b95-14fed44d48418e4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "46bc395dce885bcd7ec0e1ea84ce1454", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "428d29a0b77a0560edd049b458117f4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "227", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a45b3cc0-2a2f-47dc-ae62-8a028f4f2619", + "x-ms-correlation-request-id": "45b8ff70-00dc-4c6f-84a8-6d182e732057", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "a45b3cc0-2a2f-47dc-ae62-8a028f4f2619", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:a45b3cc0-2a2f-47dc-ae62-8a028f4f2619" + "x-ms-request-id": "45b8ff70-00dc-4c6f-84a8-6d182e732057", + "x-ms-routing-request-id": "WESTUS2:20210614T233828Z:45b8ff70-00dc-4c6f-84a8-6d182e732057" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.Compute/availabilitySets/testavset\u0027 under resource group \u0027testRg-8970\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.Compute/availabilitySets/testavset\u0027 under resource group \u0027testrg6327\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } } ], "Variables": { - "RandomSeed": "1476192510", + "RandomSeed": "1768500286", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion().json similarity index 89% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion().json index 424b1227e658..e91c24cd4be5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion().json @@ -6,34 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c03e3d865284654194d45682ab5734b4-13ae4cf6b61b524e-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c2e7e4fb960965b374d0b981cd8d6564", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3bbb488ad3b25181bd337286a535506d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9551fcf-58b8-484c-b7d8-04ddb7ee3086", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "c9551fcf-58b8-484c-b7d8-04ddb7ee3086", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:c9551fcf-58b8-484c-b7d8-04ddb7ee3086" + "x-ms-correlation-request-id": "8bc84c74-69df-4ee0-9e32-b8064764a2fb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "8bc84c74-69df-4ee0-9e32-b8064764a2fb", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:8bc84c74-69df-4ee0-9e32-b8064764a2fb" }, "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", @@ -46,47 +46,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3291?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ef3f598c6394284fae8fad65212489dc-5e66ac936b850b4a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2726f6ad7d7f4015f9eee8a32b67ff87", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-d60f0a9daa005749b65acf4467abd416-9cab41fba938cd4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "21eadbcb855e8ef05eeea87e8a2db238", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1b90487-0bd4-4c3a-9884-3881500b2647", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "a1b90487-0bd4-4c3a-9884-3881500b2647", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:a1b90487-0bd4-4c3a-9884-3881500b2647" + "x-ms-correlation-request-id": "df77edb1-566b-40bd-90bc-fc3e7adb330b", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "df77edb1-566b-40bd-90bc-fc3e7adb330b", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:df77edb1-566b-40bd-90bc-fc3e7adb330b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3291", + "name": "testrg3291", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +94,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1f2a4846682d2d45803a5f34edcdebf1-52777eaaa299b544-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8743cf30fafb384ee330ef39e53bbb3a", + "traceparent": "00-2f0ab43f96aab640a1f43e88aee18114-94156a5ae3ed4046-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c17f059144fd781cd7e95ad54ed3532", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18543d8a-f860-4c75-93ed-371abb9af345", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "18543d8a-f860-4c75-93ed-371abb9af345", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:18543d8a-f860-4c75-93ed-371abb9af345" + "x-ms-correlation-request-id": "e927a27d-4982-4c62-bc8b-68ccef04aff0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "e927a27d-4982-4c62-bc8b-68ccef04aff0", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:e927a27d-4982-4c62-bc8b-68ccef04aff0" }, "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", @@ -141,29 +140,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5a514c28e7756446a64fb3edc3063b90-78ec90ecca9b964a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "39b0afd4ffe07e7ecfa6c91aae0f3a0d", + "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": "67f75cfba9e7c22bcbac54e5d8d23206", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16347", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bebb27b1-4399-4ecd-b3e4-0816a1df93f9", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "bebb27b1-4399-4ecd-b3e4-0816a1df93f9", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:bebb27b1-4399-4ecd-b3e4-0816a1df93f9" + "x-ms-correlation-request-id": "a74ed346-1219-42b0-aede-04e1d21f544f", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "a74ed346-1219-42b0-aede-04e1d21f544f", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:a74ed346-1219-42b0-aede-04e1d21f544f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -692,7 +687,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -766,7 +762,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1150,6 +1147,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1184,6 +1182,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1218,6 +1217,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1270,6 +1270,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -1313,6 +1315,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -1323,40 +1327,36 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898?api-version=2019-05-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3291?api-version=2019-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7d4c83d8fe7fd543a74096e504b5db57-4cc3007435ea934c-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fd5032d0dd4ab369a8ee434f8ddb5bbd", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "454c4ec01138b72a5a1353dff0423970", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "235", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b19baf97-365e-4438-9951-571c8884d0e0", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "b19baf97-365e-4438-9951-571c8884d0e0", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:b19baf97-365e-4438-9951-571c8884d0e0" + "x-ms-correlation-request-id": "b6ca03c8-1f7e-4512-8b2f-3a1c60e25957", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "b6ca03c8-1f7e-4512-8b2f-3a1c60e25957", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:b6ca03c8-1f7e-4512-8b2f-3a1c60e25957" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", - "name": "testRg-898", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3291", + "name": "testrg3291", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "westus2", "tags": {}, "properties": { "provisioningState": "Succeeded" @@ -1365,7 +1365,7 @@ } ], "Variables": { - "RandomSeed": "353679548", + "RandomSeed": "1998242296", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion()Async.json similarity index 89% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion()Async.json index 3d62fd12ba0f..bfc4c26a9ed5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GetGenericsGoodApiVersion()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/GetGenericsGoodApiVersion()Async.json @@ -6,34 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a4ffbf4dc21ae8458fd99c57fc5af77f-4dbdcf76f0239b4a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b2e5521add72ba324689b48fb23515ad", + "traceparent": "00-e811d15c51e6dd459d6f71f160f814f0-100999060c4f7e4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5e45b830775e6c4f8a9a02b2eb8b7735", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb0c3090-4d39-45c7-b709-509c7d076b25", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "eb0c3090-4d39-45c7-b709-509c7d076b25", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:eb0c3090-4d39-45c7-b709-509c7d076b25" + "x-ms-correlation-request-id": "3d63a015-07fc-4d3b-80f5-a2945a3e57d2", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "3d63a015-07fc-4d3b-80f5-a2945a3e57d2", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:3d63a015-07fc-4d3b-80f5-a2945a3e57d2" }, "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", @@ -46,47 +47,45 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6622?api-version=2019-10-01", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4689eaef61f45b4d95bbd2c0247bc3f7-86a5caf9d43da74b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e2d6cc8b852a88657d5b75e4d8f0980c", + "Content-Length": "34", + "Content-Type": "application/json", + "traceparent": "00-8a98d5b041a657438f669e8ab685d406-a02aff7b56dc954e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed3074982e87a1743ed476a20955e3ea", "x-ms-return-client-request-id": "true" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "West US 2", + "tags": {} + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9b0815a-8610-4346-8abc-5ec79d3b6138", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e9b0815a-8610-4346-8abc-5ec79d3b6138", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:e9b0815a-8610-4346-8abc-5ec79d3b6138" + "x-ms-correlation-request-id": "989a2ea8-9a47-4c40-9dc5-dcc8a5d5d2d6", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "989a2ea8-9a47-4c40-9dc5-dcc8a5d5d2d6", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:989a2ea8-9a47-4c40-9dc5-dcc8a5d5d2d6" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6622", + "name": "testrg6622", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" } } }, @@ -96,34 +95,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d3a2fcec85b2534b816ba089a9340d09-a8f7174aeb20234f-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "87288283ad79b65f7265945b00442657", + "traceparent": "00-a10a32fe8584b845857b216c53a8cc6f-94851bbee4888345-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dd87192c4e274f919fa9386a0637da6e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5d79c1b-bdc9-4d31-844e-9e3e20174e99", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "f5d79c1b-bdc9-4d31-844e-9e3e20174e99", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:f5d79c1b-bdc9-4d31-844e-9e3e20174e99" + "x-ms-correlation-request-id": "b6c8f63c-b3c4-4e27-84d9-e753e88edeaf", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "b6c8f63c-b3c4-4e27-84d9-e753e88edeaf", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:b6c8f63c-b3c4-4e27-84d9-e753e88edeaf" }, "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", @@ -141,29 +141,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c306b43f4e865e4cb6d159569e938fff-3da1737a47e16d4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f1035904dfab9470ec5c3517684ee155", + "traceparent": "00-144b669bff6d3443a61917d33d2605da-dc062534756eb141-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": "63a6d123e3a589a9d1bc1fa3d9ca8044", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16347", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9a8cc2a-d3bc-429a-942f-c86393e20faa", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "a9a8cc2a-d3bc-429a-942f-c86393e20faa", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:a9a8cc2a-d3bc-429a-942f-c86393e20faa" + "x-ms-correlation-request-id": "caa89615-190e-4226-a877-dffb27331338", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "caa89615-190e-4226-a877-dffb27331338", + "x-ms-routing-request-id": "WESTUS2:20210614T233829Z:caa89615-190e-4226-a877-dffb27331338" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -692,7 +689,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -766,7 +764,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1150,6 +1149,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1184,6 +1184,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1218,6 +1219,7 @@ "Japan East", "Korea Central", "North Europe", + "Norway East", "UAE North", "West Central US", "West Europe", @@ -1270,6 +1272,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -1313,6 +1317,8 @@ "South Africa North" ], "apiVersions": [ + "2021-05-01", + "2021-03-01-preview", "2019-06-01-preview" ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" @@ -1323,40 +1329,37 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970?api-version=2019-05-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6622?api-version=2019-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b8d37c3eea94e447bcd26119321350a6-7f42aa35bed4ea4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Resources/1.0.0-preview.2", - "(.NET Core 4.6.29812.02; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2f0ca8f08e0cdd346c1f6fc4f00a8838", + "traceparent": "00-144b669bff6d3443a61917d33d2605da-79757886db50c94f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "72bec71e58ef49a1e3e04ddef5099b06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "237", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Apr 2021 23:38:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b40de324-63ee-4f21-b91f-5cb766efbc85", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "b40de324-63ee-4f21-b91f-5cb766efbc85", - "x-ms-routing-request-id": "WESTUS2:20210405T233853Z:b40de324-63ee-4f21-b91f-5cb766efbc85" + "x-ms-correlation-request-id": "128034e7-02fd-4cf7-b4c1-260c44b45a93", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "128034e7-02fd-4cf7-b4c1-260c44b45a93", + "x-ms-routing-request-id": "WESTUS2:20210614T233830Z:128034e7-02fd-4cf7-b4c1-260c44b45a93" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", - "name": "testRg-8970", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6622", + "name": "testrg6622", "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", + "location": "westus2", "tags": {}, "properties": { "provisioningState": "Succeeded" @@ -1365,7 +1368,7 @@ } ], "Variables": { - "RandomSeed": "1924798604", + "RandomSeed": "621286577", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json index 09dc9aa3530d..08a62736dfc0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag().json @@ -6,31 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb5086-4ce1cdbd20ae908f.", - "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": "4df322bceb10ee66ef513b89a5aa06c5", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3d142d2b2084c2fe464545265cab2f0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:22 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdda8ced-8bb1-4674-9880-f5770fa26f50", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "bdda8ced-8bb1-4674-9880-f5770fa26f50", - "x-ms-routing-request-id": "WESTUS2:20210507T211623Z:bdda8ced-8bb1-4674-9880-f5770fa26f50" + "x-ms-correlation-request-id": "46a741ef-eaa8-4f46-ac9e-8bbc08ad672f", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "46a741ef-eaa8-4f46-ac9e-8bbc08ad672f", + "x-ms-routing-request-id": "WESTUS2:20210614T233830Z:46a741ef-eaa8-4f46-ac9e-8bbc08ad672f" }, "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", @@ -43,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5719?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6377?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-3f657f6670b37643b261f197c21c6a11-9cbf4b63223fe84c-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": "50fbedd1c2bef6e14015ca7bcd880977", + "traceparent": "00-935d4e348707ef40923df809aab19f13-a48896c11621164e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "768a7bed4166a92d948f053108d9881b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:22 GMT", + "Date": "Mon, 14 Jun 2021 23:38:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf9fbb1f-80ee-4d54-ae60-f547d17e9b69", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "bf9fbb1f-80ee-4d54-ae60-f547d17e9b69", - "x-ms-routing-request-id": "WESTUS2:20210507T211623Z:bf9fbb1f-80ee-4d54-ae60-f547d17e9b69" + "x-ms-correlation-request-id": "4bb0681e-12b5-4b8e-9e57-f9967a26019a", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "4bb0681e-12b5-4b8e-9e57-f9967a26019a", + "x-ms-routing-request-id": "WESTUS2:20210614T233831Z:4bb0681e-12b5-4b8e-9e57-f9967a26019a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719", - "name": "testrg5719", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377", + "name": "testrg6377", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-32950aa4ca8d914da7a5dedb38ed4046-9786233afb708f49-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": "bbebbd990c4a66c56d2ae81da54c1879", + "x-ms-client-request-id": "5b809365d6a8a13a27b901259b5734aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ca49d1f-c772-4da3-bc74-671c56816eec", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "9ca49d1f-c772-4da3-bc74-671c56816eec", - "x-ms-routing-request-id": "WESTUS2:20210507T211623Z:9ca49d1f-c772-4da3-bc74-671c56816eec" + "x-ms-correlation-request-id": "54d6c042-4a10-47a1-af85-9b03db0adaf9", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "54d6c042-4a10-47a1-af85-9b03db0adaf9", + "x-ms-routing-request-id": "WESTUS2:20210614T233831Z:54d6c042-4a10-47a1-af85-9b03db0adaf9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1967fd9cfda6116056d0d69b7321c932", + "traceparent": "00-32950aa4ca8d914da7a5dedb38ed4046-2d92b7e14836f444-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd70a751c488e6ec93f091f8903e6bbc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4029,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1967fd9cfda6116056d0d69b7321c932", - "x-ms-correlation-request-id": "60ba9c6b-61e3-4893-aeb1-25cf6b5d330e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1190", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "8f47ee41-8686-426a-8eb1-331993db42c3", - "x-ms-routing-request-id": "WESTUS2:20210507T211624Z:60ba9c6b-61e3-4893-aeb1-25cf6b5d330e" + "x-ms-client-request-id": "fd70a751c488e6ec93f091f8903e6bbc", + "x-ms-correlation-request-id": "1e52572d-ee99-4cb9-9917-734aa1e9eb06", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1105", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "eba356c4-1918-4c6d-8933-4f5cb21dd725", + "x-ms-routing-request-id": "WESTUS2:20210614T233831Z:1e52572d-ee99-4cb9-9917-734aa1e9eb06" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2837\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9023\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8b3101b25da19b385cd96479362af34b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32b687d11e18a1cfa79ac7b8444211e9", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4092,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4101,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8b3101b25da19b385cd96479362af34b", - "x-ms-correlation-request-id": "a5075dfd-7619-4a05-be8f-7e3a59f8591f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1188", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "73c8f05e-9115-4403-abe9-201738833f7b", - "x-ms-routing-request-id": "WESTUS2:20210507T211624Z:a5075dfd-7619-4a05-be8f-7e3a59f8591f" + "x-ms-client-request-id": "32b687d11e18a1cfa79ac7b8444211e9", + "x-ms-correlation-request-id": "749b4e50-c9a5-4a15-ab56-f4ac95918865", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1103", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "6fedc1ea-9264-4640-b155-463471a4429a", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:749b4e50-c9a5-4a15-ab56-f4ac95918865" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2837\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9023\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,15 +4295,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "71e90d353df0b4918d74ed00f50dab0b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "092759f73987eca435a4f4f39c8c600d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4155,7 +4322,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4164,17 +4331,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "71e90d353df0b4918d74ed00f50dab0b", - "x-ms-correlation-request-id": "87544e7c-c61f-49a6-9b7b-9edf415e0371", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1186", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "9684621b-455b-48b5-9aba-9f6d62634284", - "x-ms-routing-request-id": "WESTUS2:20210507T211625Z:87544e7c-c61f-49a6-9b7b-9edf415e0371" + "x-ms-client-request-id": "092759f73987eca435a4f4f39c8c600d", + "x-ms-correlation-request-id": "e96b8e71-1281-4810-804c-4880796dd745", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1101", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "6389f277-4a9f-4981-9069-bf60b30be412", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:e96b8e71-1281-4810-804c-4880796dd745" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2837\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5719/providers/Microsoft.Compute/availabilitySets/test-aset2837\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9023\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4190,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "1249235556", + "RandomSeed": "39043501", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json index ee3722f4e280..526ccb7837f0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/RemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/RemoveTag()Async.json @@ -6,30 +6,35 @@ "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 )", - "x-ms-client-request-id": "1a4113c86032be14ae75d74a3d732e6d", + "Request-Id": "|cc332328-4095a54af43549bb.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d256257cea999effa4b14dc1dc2dba25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:22 GMT", + "Date": "Mon, 14 Jun 2021 23:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d79cc48f-c077-407a-9b6f-d4c59198e9d2", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "d79cc48f-c077-407a-9b6f-d4c59198e9d2", - "x-ms-routing-request-id": "WESTUS2:20210507T211622Z:d79cc48f-c077-407a-9b6f-d4c59198e9d2" + "x-ms-correlation-request-id": "13d84785-5af1-452f-b635-e70c7c94e942", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "13d84785-5af1-452f-b635-e70c7c94e942", + "x-ms-routing-request-id": "WESTUS2:20210614T233830Z:13d84785-5af1-452f-b635-e70c7c94e942" }, "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", @@ -42,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4063?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3934?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5792801bd39f034daa954de6d0837545-0a0341b0ac1aa444-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": "936ab510c0158d259461c50426a79d9b", + "traceparent": "00-90071d22aa0ef848ad39b3e07da1fd51-1c1fa89f408e7f41-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "24a3058bc939bf9e7e78eb12d6b73605", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:22 GMT", + "Date": "Mon, 14 Jun 2021 23:38:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be528bb9-150d-43ac-ba6d-b2e15d92585f", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "be528bb9-150d-43ac-ba6d-b2e15d92585f", - "x-ms-routing-request-id": "WESTUS2:20210507T211623Z:be528bb9-150d-43ac-ba6d-b2e15d92585f" + "x-ms-correlation-request-id": "9ad4e3fc-7dbe-46aa-897d-1743853543fe", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "9ad4e3fc-7dbe-46aa-897d-1743853543fe", + "x-ms-routing-request-id": "WESTUS2:20210614T233831Z:9ad4e3fc-7dbe-46aa-897d-1743853543fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063", - "name": "testrg4063", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934", + "name": "testrg3934", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +95,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0a36e1b497a10a40acb98cc5babf0b77-92ac37501b756140-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": "17406770f209fa18fb2def8c22a990df", + "x-ms-client-request-id": "a8d04a745a4e1176ec2d13e9c4c016c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41f61cd1-22f2-4cf3-8425-e63fa69cbbff", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "41f61cd1-22f2-4cf3-8425-e63fa69cbbff", - "x-ms-routing-request-id": "WESTUS2:20210507T211623Z:41f61cd1-22f2-4cf3-8425-e63fa69cbbff" + "x-ms-correlation-request-id": "a2a6c711-e4b8-41b1-899b-a9c8d6c35d13", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "a2a6c711-e4b8-41b1-899b-a9c8d6c35d13", + "x-ms-routing-request-id": "WESTUS2:20210614T233831Z:a2a6c711-e4b8-41b1-899b-a9c8d6c35d13" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-0a36e1b497a10a40acb98cc5babf0b77-f37dc2cf704f0b4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d08541b9b29d1b538d9efe4fb987cd39", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "718d37894228b75c131a71138bcefa16", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4030,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d08541b9b29d1b538d9efe4fb987cd39", - "x-ms-correlation-request-id": "4442110b-bf64-45bd-9a4a-29e8c8a2eb16", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1191", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "815f6f4a-4849-4444-93c9-39a7c1430d7b", - "x-ms-routing-request-id": "WESTUS2:20210507T211624Z:4442110b-bf64-45bd-9a4a-29e8c8a2eb16" + "x-ms-client-request-id": "718d37894228b75c131a71138bcefa16", + "x-ms-correlation-request-id": "54e692f1-3be7-44fc-be4c-beea40922ab5", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1104", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "c2dc7ca2-71d4-4ef1-bf5c-d77b3665a281", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:54e692f1-3be7-44fc-be4c-beea40922ab5" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9234\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset4013\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "666d2534cb18bd5d14258a6bf3c94074", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7f4c49d593a9319eed199433e862851e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4093,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:23 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "666d2534cb18bd5d14258a6bf3c94074", - "x-ms-correlation-request-id": "a7e201cf-cdc8-45ec-b21b-49a89a31d97e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1189", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "53c32761-f05d-41ad-a936-830b98d936bf", - "x-ms-routing-request-id": "WESTUS2:20210507T211624Z:a7e201cf-cdc8-45ec-b21b-49a89a31d97e" + "x-ms-client-request-id": "7f4c49d593a9319eed199433e862851e", + "x-ms-correlation-request-id": "9a8b7020-47c6-472c-9fb1-cef7fbf20d5e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1102", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-request-id": "a77045db-0b69-45f2-b567-b4b43ce13677", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:9a8b7020-47c6-472c-9fb1-cef7fbf20d5e" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9234\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset4013\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4129,15 +4294,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "941a462b671ae220e446b207f29bd087", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "423eba617a81286d7687823ae408c3ca", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4156,7 +4321,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", + "Date": "Mon, 14 Jun 2021 23:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4165,17 +4330,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "941a462b671ae220e446b207f29bd087", - "x-ms-correlation-request-id": "4d622d2c-c818-4267-b149-8a2122699e21", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1187", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "8be6e941-cfdf-4f62-bc26-888de1a46741", - "x-ms-routing-request-id": "WESTUS2:20210507T211625Z:4d622d2c-c818-4267-b149-8a2122699e21" + "x-ms-client-request-id": "423eba617a81286d7687823ae408c3ca", + "x-ms-correlation-request-id": "abe537bb-f90f-4b3e-8778-6b48fc1b0c7b", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1100", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-request-id": "cf77b512-2878-4d08-872f-6e6eb6499835", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:abe537bb-f90f-4b3e-8778-6b48fc1b0c7b" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9234\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4063/providers/Microsoft.Compute/availabilitySets/test-aset9234\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset4013\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4191,7 +4356,7 @@ } ], "Variables": { - "RandomSeed": "949567127", + "RandomSeed": "427768875", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json index 576e27db982f..910f53f33c04 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags().json @@ -6,31 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb5087-4ce1cdbd20ae908f.", - "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": "4ec783282ff7dc516d0fa1e9625bd959", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ac6436c1f56c83a4472152c203e8c09", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", + "Date": "Mon, 14 Jun 2021 23:38:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e1784cd-99c7-4e8d-888b-11a4bfe775d5", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "4e1784cd-99c7-4e8d-888b-11a4bfe775d5", - "x-ms-routing-request-id": "WESTUS2:20210507T211625Z:4e1784cd-99c7-4e8d-888b-11a4bfe775d5" + "x-ms-correlation-request-id": "51ee9ef3-9fc0-4f32-923b-0e66350d3ee0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "51ee9ef3-9fc0-4f32-923b-0e66350d3ee0", + "x-ms-routing-request-id": "WESTUS2:20210614T233832Z:51ee9ef3-9fc0-4f32-923b-0e66350d3ee0" }, "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", @@ -43,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3001?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3687?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-56db5d77c1aa8945a15178fdd1b9cd07-9234d40854534744-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": "d4555d91cd07e1045139caad7f8d050b", + "traceparent": "00-3da49a8e774b72459844d5315720c98b-94ed01b30f154243-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "81c77e2cfe8f6255ecfcf8c5eb53b97b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c56082d-2d53-41b9-8a52-e00b133bcfe8", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "4c56082d-2d53-41b9-8a52-e00b133bcfe8", - "x-ms-routing-request-id": "WESTUS2:20210507T211626Z:4c56082d-2d53-41b9-8a52-e00b133bcfe8" + "x-ms-correlation-request-id": "085a765f-e846-4857-b0cd-90afcb61f421", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "085a765f-e846-4857-b0cd-90afcb61f421", + "x-ms-routing-request-id": "WESTUS2:20210614T233833Z:085a765f-e846-4857-b0cd-90afcb61f421" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001", - "name": "testrg3001", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687", + "name": "testrg3687", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-b1f9f6e18b8c214e88ca59f0a1b16f23-f7a56075afca344d-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": "491cff3364f38a9d0977c2ea856c309f", + "x-ms-client-request-id": "6be7fadea2abd2fa0eb0365ad0be15d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70f7c8b9-3c41-4da7-837e-71937979754d", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "70f7c8b9-3c41-4da7-837e-71937979754d", - "x-ms-routing-request-id": "WESTUS2:20210507T211626Z:70f7c8b9-3c41-4da7-837e-71937979754d" + "x-ms-correlation-request-id": "b1b2b613-2c6d-4727-b4a2-379c9d23bbba", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "b1b2b613-2c6d-4727-b4a2-379c9d23bbba", + "x-ms-routing-request-id": "WESTUS2:20210614T233833Z:b1b2b613-2c6d-4727-b4a2-379c9d23bbba" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9d8705fa2080c3b66ca6f6862eee829c", + "traceparent": "00-b1f9f6e18b8c214e88ca59f0a1b16f23-7fe7cc12d4484a46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7dbcb6cdc2c7045c86a234202581f5c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4029,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9d8705fa2080c3b66ca6f6862eee829c", - "x-ms-correlation-request-id": "2a05953e-a93c-474b-bc01-8b8ec6462abf", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1184", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "f6475f86-db17-497f-9566-8202feeac05c", - "x-ms-routing-request-id": "WESTUS2:20210507T211627Z:2a05953e-a93c-474b-bc01-8b8ec6462abf" + "x-ms-client-request-id": "d7dbcb6cdc2c7045c86a234202581f5c", + "x-ms-correlation-request-id": "10baad0a-a580-4d50-812d-40083f5a2864", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1099", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "bab228dc-17aa-4d70-ae58-82d10b21e5f4", + "x-ms-routing-request-id": "WESTUS2:20210614T233834Z:10baad0a-a580-4d50-812d-40083f5a2864" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset3159\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2941\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "87840d996d7d13b24858dd4c6d165b1b", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "877ff1e3a4dd0165b576a2417eb8cfb5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4092,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", + "Date": "Mon, 14 Jun 2021 23:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4101,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "87840d996d7d13b24858dd4c6d165b1b", - "x-ms-correlation-request-id": "625668d5-8a61-42d7-b2f8-3706a470c167", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1182", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "964fa5ae-da2e-48d2-ad6d-2886472fad41", - "x-ms-routing-request-id": "WESTUS2:20210507T211627Z:625668d5-8a61-42d7-b2f8-3706a470c167" + "x-ms-client-request-id": "877ff1e3a4dd0165b576a2417eb8cfb5", + "x-ms-correlation-request-id": "b373b453-f812-4a9e-87fb-138e48322369", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1097", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "40b5815f-ec70-4aa3-b4dd-61ac9f0f3e84", + "x-ms-routing-request-id": "WESTUS2:20210614T233834Z:b373b453-f812-4a9e-87fb-138e48322369" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset3159\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3001/providers/Microsoft.Compute/availabilitySets/test-aset3159\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2941\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4129,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "232977705", + "RandomSeed": "1013260093", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json index 4da8833bc1be..f0d6a3381740 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/SetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/SetTags()Async.json @@ -6,30 +6,35 @@ "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 )", - "x-ms-client-request-id": "b5c4dd3a87e2cb8f4335b879b4d66d95", + "traceparent": "00-bfdc8fe8ca942248b0bd1a40959d6182-1b9faa5f8f46e444-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5fcb095a75fe69890166a3beed2a474d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:24 GMT", + "Date": "Mon, 14 Jun 2021 23:38:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e456f1c4-d430-43f1-9d1f-20ba96967678", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "e456f1c4-d430-43f1-9d1f-20ba96967678", - "x-ms-routing-request-id": "WESTUS2:20210507T211625Z:e456f1c4-d430-43f1-9d1f-20ba96967678" + "x-ms-correlation-request-id": "52312bd8-9ce2-4924-a9b5-9108ce3524c7", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "52312bd8-9ce2-4924-a9b5-9108ce3524c7", + "x-ms-routing-request-id": "WESTUS2:20210614T233833Z:52312bd8-9ce2-4924-a9b5-9108ce3524c7" }, "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", @@ -42,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8431?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2426?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-bd0b1b6b86bfb4488de4818814041944-490412680afcc443-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": "4ef424078c158ff412e9aafe0ed55a73", + "traceparent": "00-8b7f422e3a3d32478e3c153beac6f7c8-698d5dc658f8d146-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "db158089ba6b1c3ea5a94a6e4ad678b2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea583c9c-ef5d-4285-bd6e-e5200a12ecb6", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "ea583c9c-ef5d-4285-bd6e-e5200a12ecb6", - "x-ms-routing-request-id": "WESTUS2:20210507T211626Z:ea583c9c-ef5d-4285-bd6e-e5200a12ecb6" + "x-ms-correlation-request-id": "d4d5f7aa-5498-4760-9fb5-ad367fd1ebf1", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-request-id": "d4d5f7aa-5498-4760-9fb5-ad367fd1ebf1", + "x-ms-routing-request-id": "WESTUS2:20210614T233834Z:d4d5f7aa-5498-4760-9fb5-ad367fd1ebf1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431", - "name": "testrg8431", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426", + "name": "testrg2426", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +95,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6dc3a8d2c8b0344c8070bbf28479bafd-4f1453d3b33c034c-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": "9be400e175b62520dcbafd70a264da40", + "x-ms-client-request-id": "8b7ef65a1d9fbc8742f69b15f6118021", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:25 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "519f231a-68ee-41c1-8b33-99f17e43d006", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "519f231a-68ee-41c1-8b33-99f17e43d006", - "x-ms-routing-request-id": "WESTUS2:20210507T211626Z:519f231a-68ee-41c1-8b33-99f17e43d006" + "x-ms-correlation-request-id": "6a545343-0db2-4733-87f7-8d6a18f38779", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "6a545343-0db2-4733-87f7-8d6a18f38779", + "x-ms-routing-request-id": "WESTUS2:20210614T233834Z:6a545343-0db2-4733-87f7-8d6a18f38779" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426/providers/Microsoft.Compute/availabilitySets/test-aset6283?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-6dc3a8d2c8b0344c8070bbf28479bafd-87d8557c7082eb4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a9ee1684240ad05025cf9de5cd355f5e", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4fe623eef778c4e4259cc3ffbb7902b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4030,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", + "Date": "Mon, 14 Jun 2021 23:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a9ee1684240ad05025cf9de5cd355f5e", - "x-ms-correlation-request-id": "15c9043c-8731-40c5-8fbc-c435e6481acb", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1185", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "be968068-305f-42e5-848f-37422ca9a298", - "x-ms-routing-request-id": "WESTUS2:20210507T211627Z:15c9043c-8731-40c5-8fbc-c435e6481acb" + "x-ms-client-request-id": "f4fe623eef778c4e4259cc3ffbb7902b", + "x-ms-correlation-request-id": "e11549e4-f3ab-46ac-bc22-34b62b006ae9", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1098", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-request-id": "bed8081f-29bb-4844-a4dd-baa145756e97", + "x-ms-routing-request-id": "WESTUS2:20210614T233834Z:e11549e4-f3ab-46ac-bc22-34b62b006ae9" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1776\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6283\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426/providers/Microsoft.Compute/availabilitySets/test-aset6283\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426/providers/Microsoft.Compute/availabilitySets/test-aset6283?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bf8abdcfc96bbce3af1476e6d83a57a7", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "730b4ccabd796a3ca8f249465147c18a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4093,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:26 GMT", + "Date": "Mon, 14 Jun 2021 23:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bf8abdcfc96bbce3af1476e6d83a57a7", - "x-ms-correlation-request-id": "995bc303-a239-441b-9463-428b00c890a5", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1183", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "083fb296-b5cb-4926-8f9e-3bf7b08a43d9", - "x-ms-routing-request-id": "WESTUS2:20210507T211627Z:995bc303-a239-441b-9463-428b00c890a5" + "x-ms-client-request-id": "730b4ccabd796a3ca8f249465147c18a", + "x-ms-correlation-request-id": "6bccdd9f-07f7-4b8f-a86f-00b2c640e4a7", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1096", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-request-id": "421cb552-222c-4aaa-bb7d-44c58c1d9283", + "x-ms-routing-request-id": "WESTUS2:20210614T233835Z:6bccdd9f-07f7-4b8f-a86f-00b2c640e4a7" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1776\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8431/providers/Microsoft.Compute/availabilitySets/test-aset1776\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6283\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426/providers/Microsoft.Compute/availabilitySets/test-aset6283\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4130,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "891108958", + "RandomSeed": "287344694", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json index e306e7de365e..351f1655060d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag().json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "0b807f5832051469bc4aa4a312414119", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39ad8a6bfb87f716fb2506be2955129c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:27 GMT", + "Date": "Mon, 14 Jun 2021 23:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d39e188-db77-4da8-ad4e-6e6bc07d4d75", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "6d39e188-db77-4da8-ad4e-6e6bc07d4d75", - "x-ms-routing-request-id": "WESTUS2:20210507T211628Z:6d39e188-db77-4da8-ad4e-6e6bc07d4d75" + "x-ms-correlation-request-id": "4a8ef829-eb7c-4442-a2f8-efb26dc1ca6b", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "4a8ef829-eb7c-4442-a2f8-efb26dc1ca6b", + "x-ms-routing-request-id": "WESTUS2:20210614T233835Z:4a8ef829-eb7c-4442-a2f8-efb26dc1ca6b" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3220?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6845?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-6d88ed0b57890f43aa737e3baa7ba1af-8d5966c5b1e95d47-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": "0ece2b00c2f5bcefddb140e3af550840", + "traceparent": "00-91c9b2e4c784c142a1a3ec3fd11e4b78-3e97825ff8aeb744-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0a06e1e5e4a7f29c535e7d9515663039", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b921bb1-319b-4581-94ba-62a87729d090", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "7b921bb1-319b-4581-94ba-62a87729d090", - "x-ms-routing-request-id": "WESTUS2:20210507T211629Z:7b921bb1-319b-4581-94ba-62a87729d090" + "x-ms-correlation-request-id": "a6ddd988-99de-465a-9f34-021e0408ad0d", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "a6ddd988-99de-465a-9f34-021e0408ad0d", + "x-ms-routing-request-id": "WESTUS2:20210614T233836Z:a6ddd988-99de-465a-9f34-021e0408ad0d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220", - "name": "testrg3220", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845", + "name": "testrg6845", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-1f5adfeca46d9b43b04fae543260f096-3d30c01b20cad844-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": "ed79605139a129f92b3dfc1c23709105", + "x-ms-client-request-id": "9a072903bdb076fa35d697de18650c02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "896e1a23-2fb5-4122-ae29-929b1ca826c9", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "896e1a23-2fb5-4122-ae29-929b1ca826c9", - "x-ms-routing-request-id": "WESTUS2:20210507T211629Z:896e1a23-2fb5-4122-ae29-929b1ca826c9" + "x-ms-correlation-request-id": "f721d8de-fa9d-4e66-abf4-e9ae4f488d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "f721d8de-fa9d-4e66-abf4-e9ae4f488d6f", + "x-ms-routing-request-id": "WESTUS2:20210614T233836Z:f721d8de-fa9d-4e66-abf4-e9ae4f488d6f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -188,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -261,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -429,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -472,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -545,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -714,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -757,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -831,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -905,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -978,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1053,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1128,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1159,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1214,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1287,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1359,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1422,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1494,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1559,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1624,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1697,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1762,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1805,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1859,9 +1928,11 @@ "Switzerland North", "Germany 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 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2011,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2054,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2100,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2146,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2332,9 +2414,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", @@ -2380,9 +2464,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", @@ -2428,9 +2514,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", @@ -2476,9 +2564,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", @@ -2524,9 +2614,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", @@ -2572,9 +2664,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", @@ -2732,9 +2826,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" @@ -2775,9 +2881,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", @@ -2840,9 +2948,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", @@ -2904,9 +3014,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", @@ -2953,9 +3065,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", @@ -3000,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3140,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3183,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3228,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3273,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3317,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3361,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3405,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3449,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3493,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3537,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3603,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3655,9 +3794,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", @@ -3800,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3843,9 +3996,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", @@ -3988,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4001,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845/providers/Microsoft.Compute/availabilitySets/test-aset3534?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "be9e6944624590bc4e278029300df59c", + "traceparent": "00-1f5adfeca46d9b43b04fae543260f096-bd662f849c2a4444-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e4f37efcc42711a646339c9862e5bed6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4037,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "be9e6944624590bc4e278029300df59c", - "x-ms-correlation-request-id": "767dbaac-cfc5-4eed-85d5-8868c03f334e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1181", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "9f1fdbab-55c1-4311-9687-9123ae4faef0", - "x-ms-routing-request-id": "WESTUS2:20210507T211629Z:767dbaac-cfc5-4eed-85d5-8868c03f334e" + "x-ms-client-request-id": "e4f37efcc42711a646339c9862e5bed6", + "x-ms-correlation-request-id": "d1926140-5ab7-4ba0-a0b4-cbd2a81480fa", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1095", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "2285f839-067d-4800-8ef5-7367bc0d02bf", + "x-ms-routing-request-id": "WESTUS2:20210614T233836Z:d1926140-5ab7-4ba0-a0b4-cbd2a81480fa" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2377\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset3534\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845/providers/Microsoft.Compute/availabilitySets/test-aset3534\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4062,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845/providers/Microsoft.Compute/availabilitySets/test-aset3534?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ec6adeaf8169ef27a3e99e7ab8cff91e", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e8199270553c3fdd83f5537c2162134f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:30 GMT", + "Date": "Mon, 14 Jun 2021 23:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4100,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ec6adeaf8169ef27a3e99e7ab8cff91e", - "x-ms-correlation-request-id": "67dbb35a-5fe6-4c90-afff-509abded395c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1179", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "6cdfc16b-dcd7-4a2d-bc0a-ca2039e5cc30", - "x-ms-routing-request-id": "WESTUS2:20210507T211630Z:67dbb35a-5fe6-4c90-afff-509abded395c" + "x-ms-client-request-id": "e8199270553c3fdd83f5537c2162134f", + "x-ms-correlation-request-id": "ef1c83f3-ff34-45a0-8f53-7ec763f5048b", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;219,Microsoft.Compute/PutVM30Min;1093", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "2be7fc39-8f1d-4ed0-8ccc-873564a2630d", + "x-ms-routing-request-id": "WESTUS2:20210614T233837Z:ef1c83f3-ff34-45a0-8f53-7ec763f5048b" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2377\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3220/providers/Microsoft.Compute/availabilitySets/test-aset2377\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset3534\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6845/providers/Microsoft.Compute/availabilitySets/test-aset3534\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "413494752", + "RandomSeed": "78968254", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json index 51a84acdf43c..4a0a9f956bc0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartAddTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartAddTag()Async.json @@ -6,30 +6,35 @@ "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 )", - "x-ms-client-request-id": "a17cf37b84b5d1cc4257887f6a69cb90", + "traceparent": "00-31616b7fb32a9c4bab82310da742b75a-f8f01e120729da49-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d6c36425f8025b35c9bff5c21e365fad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:27 GMT", + "Date": "Mon, 14 Jun 2021 23:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4980c8bf-4f14-4faf-8b0c-4c48ee232a13", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "4980c8bf-4f14-4faf-8b0c-4c48ee232a13", - "x-ms-routing-request-id": "WESTUS2:20210507T211628Z:4980c8bf-4f14-4faf-8b0c-4c48ee232a13" + "x-ms-correlation-request-id": "0e7fd42f-8dcd-4e06-b109-75ee7c9b0944", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "0e7fd42f-8dcd-4e06-b109-75ee7c9b0944", + "x-ms-routing-request-id": "WESTUS2:20210614T233835Z:0e7fd42f-8dcd-4e06-b109-75ee7c9b0944" }, "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", @@ -42,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5741?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3463?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-751b478450ec7a4ca6faa5d424362322-c3b48ac6b9468e4b-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": "59132746493f48146b449c92f44f8ad3", + "traceparent": "00-ed8ae4a50fb4c04d9679ea926913bdfc-bf9179fd387c7845-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cb5a56b3df410b88434b6144b3dc03d6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:28 GMT", + "Date": "Mon, 14 Jun 2021 23:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15e99ce8-be4b-4e93-9cc0-5c00915a18ba", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "15e99ce8-be4b-4e93-9cc0-5c00915a18ba", - "x-ms-routing-request-id": "WESTUS2:20210507T211629Z:15e99ce8-be4b-4e93-9cc0-5c00915a18ba" + "x-ms-correlation-request-id": "690ad66c-415c-48db-9fc2-50d614db2c5a", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-request-id": "690ad66c-415c-48db-9fc2-50d614db2c5a", + "x-ms-routing-request-id": "WESTUS2:20210614T233836Z:690ad66c-415c-48db-9fc2-50d614db2c5a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741", - "name": "testrg5741", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463", + "name": "testrg3463", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,24 +96,24 @@ "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 )", - "x-ms-client-request-id": "ab44675943b955fec3bd32a6e5dfbb6a", + "x-ms-client-request-id": "37a11fa291121516f8e0ec482c278e5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:28 GMT", + "Date": "Mon, 14 Jun 2021 23:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4aadec8c-a423-43d1-8142-843721b258aa", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "4aadec8c-a423-43d1-8142-843721b258aa", - "x-ms-routing-request-id": "WESTUS2:20210507T211629Z:4aadec8c-a423-43d1-8142-843721b258aa" + "x-ms-correlation-request-id": "5719a74d-e6b7-4db1-a14e-0a03e3fd4916", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "5719a74d-e6b7-4db1-a14e-0a03e3fd4916", + "x-ms-routing-request-id": "WESTUS2:20210614T233836Z:5719a74d-e6b7-4db1-a14e-0a03e3fd4916" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -188,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -261,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -429,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -472,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -545,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -714,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -757,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -831,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -905,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -978,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1053,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1128,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1159,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1214,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1287,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1359,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1422,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1494,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1559,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1624,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1697,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1762,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1805,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1859,9 +1928,11 @@ "Switzerland North", "Germany 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 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2011,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2054,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2100,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2146,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2332,9 +2414,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", @@ -2380,9 +2464,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", @@ -2428,9 +2514,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", @@ -2476,9 +2564,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", @@ -2524,9 +2614,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", @@ -2572,9 +2664,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", @@ -2732,9 +2826,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" @@ -2775,9 +2881,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", @@ -2840,9 +2948,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", @@ -2904,9 +3014,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", @@ -2953,9 +3065,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", @@ -3000,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3140,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3183,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3228,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3273,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3317,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3361,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3405,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3449,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3493,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3537,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3603,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3655,9 +3794,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", @@ -3800,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3843,9 +3996,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", @@ -3988,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4001,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463/providers/Microsoft.Compute/availabilitySets/test-aset2984?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a1593bb13cb068a959493f2f3e4d08fd", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "116b8995e3ab3b85cabfacd41616e3f1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4037,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a1593bb13cb068a959493f2f3e4d08fd", - "x-ms-correlation-request-id": "8e68fb63-b887-4766-9123-31c7288b05c8", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1180", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "b0b18a85-8d69-47d7-9141-6ae397810c84", - "x-ms-routing-request-id": "WESTUS2:20210507T211630Z:8e68fb63-b887-4766-9123-31c7288b05c8" + "x-ms-client-request-id": "116b8995e3ab3b85cabfacd41616e3f1", + "x-ms-correlation-request-id": "2a02260a-30c3-45d8-bcad-08d1b52a6f2e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1094", + "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-request-id": "cae89495-69d8-4955-94e1-e572fae2f4c6", + "x-ms-routing-request-id": "WESTUS2:20210614T233837Z:2a02260a-30c3-45d8-bcad-08d1b52a6f2e" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5693\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2984\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463/providers/Microsoft.Compute/availabilitySets/test-aset2984\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4062,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463/providers/Microsoft.Compute/availabilitySets/test-aset2984?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "134327e131311d83bedc526f04ce1675", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "521ee9d2c598be279a666c52e541fee2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:29 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4100,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "134327e131311d83bedc526f04ce1675", - "x-ms-correlation-request-id": "5a17b439-dc2f-40d2-94e9-30048969b82b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1178", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "1e2a02b8-91c6-466f-a2a8-1234e916c7b8", - "x-ms-routing-request-id": "WESTUS2:20210507T211630Z:5a17b439-dc2f-40d2-94e9-30048969b82b" + "x-ms-client-request-id": "521ee9d2c598be279a666c52e541fee2", + "x-ms-correlation-request-id": "87a6556b-48dc-4517-bac0-f91497c1f79a", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1092", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-request-id": "24c1c339-b76d-4a6b-a295-d0baf78fe9b7", + "x-ms-routing-request-id": "WESTUS2:20210614T233837Z:87a6556b-48dc-4517-bac0-f91497c1f79a" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5693\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5741/providers/Microsoft.Compute/availabilitySets/test-aset5693\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2984\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3463/providers/Microsoft.Compute/availabilitySets/test-aset2984\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "1865325550", + "RandomSeed": "1605842244", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json index 5cc1af15b9f5..8d4ab824a451 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete().json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "fe4cfa30d8a2c06302f27ed15c8c61ad", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e5a5ab25d2338b10816ae6531d4de440", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:31 GMT", + "Date": "Mon, 14 Jun 2021 23:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adae576d-5b05-410f-b3e4-a3ab9c00d6e9", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "adae576d-5b05-410f-b3e4-a3ab9c00d6e9", - "x-ms-routing-request-id": "WESTUS2:20210507T211632Z:adae576d-5b05-410f-b3e4-a3ab9c00d6e9" + "x-ms-correlation-request-id": "752cbdea-1474-4097-b622-7ce0d51ffd77", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "752cbdea-1474-4097-b622-7ce0d51ffd77", + "x-ms-routing-request-id": "WESTUS2:20210614T233837Z:752cbdea-1474-4097-b622-7ce0d51ffd77" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4625?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6621?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-88fa8662c6f9c248842ba70eb7f4ca76-2af1d01aa97cb840-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": "8ef1a7c8f37002db986bba78ef4b89aa", + "traceparent": "00-0d65aaaa00841c47a5a01ffeba9dac05-f06f8d826f3af54a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "538fb96cc5599cd3aab4e514dff07a94", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:31 GMT", + "Date": "Mon, 14 Jun 2021 23:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48051ebd-69a1-40bc-bbda-4f34ebb8be79", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "48051ebd-69a1-40bc-bbda-4f34ebb8be79", - "x-ms-routing-request-id": "WESTUS2:20210507T211632Z:48051ebd-69a1-40bc-bbda-4f34ebb8be79" + "x-ms-correlation-request-id": "966f0049-f4ff-4d0e-93ae-f4cf6dd21e67", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "966f0049-f4ff-4d0e-93ae-f4cf6dd21e67", + "x-ms-routing-request-id": "WESTUS2:20210614T233838Z:966f0049-f4ff-4d0e-93ae-f4cf6dd21e67" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625", - "name": "testrg4625", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6621", + "name": "testrg6621", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3441b0b86656844a9b84e9893e29d7dd-145cf61debf9c442-00", + "traceparent": "00-64709f9433b0174bb20b80703d8aeef1-782321931ab5ff4a-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": "dbb0b661d2eecdf73cd25032c33ac923", + "x-ms-client-request-id": "66c84ec7af17b920200e4dcc7eca8689", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:31 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b417f4c9-f37f-4a66-aae7-e5653874f1ca", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "b417f4c9-f37f-4a66-aae7-e5653874f1ca", - "x-ms-routing-request-id": "WESTUS2:20210507T211632Z:b417f4c9-f37f-4a66-aae7-e5653874f1ca" + "x-ms-correlation-request-id": "86483e61-817b-49f4-8031-b2013e2951ac", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "86483e61-817b-49f4-8031-b2013e2951ac", + "x-ms-routing-request-id": "WESTUS2:20210614T233838Z:86483e61-817b-49f4-8031-b2013e2951ac" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625/providers/Microsoft.Compute/availabilitySets/test-aset2427?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6621/providers/Microsoft.Compute/availabilitySets/test-aset3578?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-3441b0b86656844a9b84e9893e29d7dd-57fc06421815954a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0ac6c69fc0027007fb0a6ca94713a6f5", + "traceparent": "00-64709f9433b0174bb20b80703d8aeef1-67a7d57503ac564b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "27833c27cba4d2e648881d2a76a17a6c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4030,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:32 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0ac6c69fc0027007fb0a6ca94713a6f5", - "x-ms-correlation-request-id": "d974c294-55d0-4766-9620-64ac2fda59af", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;217,Microsoft.Compute/PutVM30Min;1177", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "185591ea-675a-41b5-b703-5e63f24dc289", - "x-ms-routing-request-id": "WESTUS2:20210507T211633Z:d974c294-55d0-4766-9620-64ac2fda59af" + "x-ms-client-request-id": "27833c27cba4d2e648881d2a76a17a6c", + "x-ms-correlation-request-id": "1dac9607-4d56-4ba4-8d29-7c83a681efdb", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;216,Microsoft.Compute/PutVM30Min;1090", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "a13559dd-f532-4324-9871-7754c8d0c2de", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:1dac9607-4d56-4ba4-8d29-7c83a681efdb" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset2427\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625/providers/Microsoft.Compute/availabilitySets/test-aset2427\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset3578\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6621/providers/Microsoft.Compute/availabilitySets/test-aset3578\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,13 +4230,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4625/providers/Microsoft.Compute/availabilitySets/test-aset2427?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6621/providers/Microsoft.Compute/availabilitySets/test-aset3578?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "844f55f0a0c3a0c3af3fdfe4664d8529", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3b88a5f6df7fcad68f51d8e91f6427e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -4078,7 +4244,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:32 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4087,18 +4253,63 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "844f55f0a0c3a0c3af3fdfe4664d8529", - "x-ms-correlation-request-id": "4aa59ed1-9390-49b5-b67f-c8bec2f58ace", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1197", - "x-ms-ratelimit-remaining-subscription-deletes": "14981", - "x-ms-request-id": "c48b113b-5422-4e24-89d4-fc338681f4a3", - "x-ms-routing-request-id": "WESTUS2:20210507T211633Z:4aa59ed1-9390-49b5-b67f-c8bec2f58ace" + "x-ms-client-request-id": "b3b88a5f6df7fcad68f51d8e91f6427e", + "x-ms-correlation-request-id": "528b7c3b-1c1f-460f-804c-3c30d89a36cf", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;236,Microsoft.Compute/DeleteVM30Min;1141", + "x-ms-ratelimit-remaining-subscription-deletes": "14980", + "x-ms-request-id": "929eba3d-ec04-42a8-ae80-8b15905f28ea", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:528b7c3b-1c1f-460f-804c-3c30d89a36cf" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset4599?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.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e9ebca3374c61d51892e82f4c6787957", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cfdfbdec-daee-411c-93d8-ebcd211b39ea", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "cfdfbdec-daee-411c-93d8-ebcd211b39ea", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:cfdfbdec-daee-411c-93d8-ebcd211b39ea" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } } ], "Variables": { - "RandomSeed": "1462754536", + "RandomSeed": "671550405", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json index 70a47ea08ac6..76d379a1ffd4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartDelete()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartDelete()Async.json @@ -6,31 +6,35 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb5088-4ce1cdbd20ae908f.", - "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": "1f83b3ddb28369355241e5aa3c2da689", + "traceparent": "00-b087b0fb629b694d81ec4c34692b6ef1-be8c6fda3a13db4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "19b0711328db2c5f3e5c74e5e8389f85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:32 GMT", + "Date": "Mon, 14 Jun 2021 23:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5f07287-4bea-4e29-b2f4-6c8068d7bd22", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "f5f07287-4bea-4e29-b2f4-6c8068d7bd22", - "x-ms-routing-request-id": "WESTUS2:20210507T211632Z:f5f07287-4bea-4e29-b2f4-6c8068d7bd22" + "x-ms-correlation-request-id": "13db69ab-b55a-4330-b1f9-a5acb4ead1b0", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "13db69ab-b55a-4330-b1f9-a5acb4ead1b0", + "x-ms-routing-request-id": "WESTUS2:20210614T233837Z:13db69ab-b55a-4330-b1f9-a5acb4ead1b0" }, "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", @@ -43,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg875?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5361?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-cb320fcc61d28246956ccc79a0a075a0-0dc0be9b62a2e040-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": "be7a76f8e166c4326a583a69b6d16701", + "traceparent": "00-2d0039a7bfa69048ba80b87059a0096a-0dd57b1fa904c94d-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "add4bbc9813456b7645537bd3d7339cb", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -62,21 +66,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "226", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:32 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24a1162d-068f-4b2c-88f6-7a977b191cc7", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "24a1162d-068f-4b2c-88f6-7a977b191cc7", - "x-ms-routing-request-id": "WESTUS2:20210507T211632Z:24a1162d-068f-4b2c-88f6-7a977b191cc7" + "x-ms-correlation-request-id": "855f0b1e-16d8-4194-9ef0-1f8ca5ed2843", + "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-request-id": "855f0b1e-16d8-4194-9ef0-1f8ca5ed2843", + "x-ms-routing-request-id": "WESTUS2:20210614T233838Z:855f0b1e-16d8-4194-9ef0-1f8ca5ed2843" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875", - "name": "testrg875", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5361", + "name": "testrg5361", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -92,24 +96,24 @@ "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 )", - "x-ms-client-request-id": "36427f3781752290a42ca2b869302198", + "x-ms-client-request-id": "87594a432a0ba3b75457b287a629f1d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:33 GMT", + "Date": "Mon, 14 Jun 2021 23:38:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9892b8ba-fe55-4f0c-8355-f8a7eb1b1c05", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "9892b8ba-fe55-4f0c-8355-f8a7eb1b1c05", - "x-ms-routing-request-id": "WESTUS2:20210507T211633Z:9892b8ba-fe55-4f0c-8355-f8a7eb1b1c05" + "x-ms-correlation-request-id": "d3e778d8-8ceb-45c4-a675-41f781b00add", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "d3e778d8-8ceb-45c4-a675-41f781b00add", + "x-ms-routing-request-id": "WESTUS2:20210614T233838Z:d3e778d8-8ceb-45c4-a675-41f781b00add" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875/providers/Microsoft.Compute/availabilitySets/test-aset8527?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5361/providers/Microsoft.Compute/availabilitySets/test-aset6919?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3839a2476f951d15a1859fa009c707d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4fa5d301def1f9efc377d2276f00e83b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4027,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "407", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:33 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f3839a2476f951d15a1859fa009c707d", - "x-ms-correlation-request-id": "18d5ed76-601c-4846-9844-e7514400c6fc", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;216,Microsoft.Compute/PutVM30Min;1176", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "75a0ef89-4da9-46c8-8a8f-8fed24bc6f4a", - "x-ms-routing-request-id": "WESTUS2:20210507T211633Z:18d5ed76-601c-4846-9844-e7514400c6fc" + "x-ms-client-request-id": "4fa5d301def1f9efc377d2276f00e83b", + "x-ms-correlation-request-id": "fdcae582-0426-4a74-a07a-5dea4c156598", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;217,Microsoft.Compute/PutVM30Min;1091", + "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-request-id": "42ecbecd-0b55-4327-adfa-09feaabe24ad", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:fdcae582-0426-4a74-a07a-5dea4c156598" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8527\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875/providers/Microsoft.Compute/availabilitySets/test-aset8527\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6919\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5361/providers/Microsoft.Compute/availabilitySets/test-aset6919\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,13 +4229,13 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg875/providers/Microsoft.Compute/availabilitySets/test-aset8527?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5361/providers/Microsoft.Compute/availabilitySets/test-aset6919?api-version=2021-04-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3691d1190de4c161adf1db5c27952107", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a03be6467c9364825a60c393588f3453", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -4077,7 +4243,7 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 07 May 2021 21:16:33 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4086,18 +4252,63 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3691d1190de4c161adf1db5c27952107", - "x-ms-correlation-request-id": "e67f8878-a257-490b-bf5f-1cefd9db7092", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;236,Microsoft.Compute/DeleteVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-deletes": "14986", - "x-ms-request-id": "aba34409-3156-48b9-8902-e38e46f233d8", - "x-ms-routing-request-id": "WESTUS2:20210507T211633Z:e67f8878-a257-490b-bf5f-1cefd9db7092" + "x-ms-client-request-id": "a03be6467c9364825a60c393588f3453", + "x-ms-correlation-request-id": "cc4a5278-6579-40da-b574-91625da749f0", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1142", + "x-ms-ratelimit-remaining-subscription-deletes": "14984", + "x-ms-request-id": "60cec98d-02cf-429e-9bf5-afbc3ff3161b", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:cc4a5278-6579-40da-b574-91625da749f0" }, "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/foo-1/providers/Microsoft.Compute/availabilitySets/test-aset1630?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.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c488e1a6a848f19d90facad02a378dd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "West US 2", + "tags": {} + }, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a8043495-0f3e-4369-9e4b-5c9f7a4a58fd", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "a8043495-0f3e-4369-9e4b-5c9f7a4a58fd", + "x-ms-routing-request-id": "WESTUS2:20210614T233839Z:a8043495-0f3e-4369-9e4b-5c9f7a4a58fd" + }, + "ResponseBody": { + "error": { + "code": "ResourceGroupNotFound", + "message": "Resource group \u0027foo-1\u0027 could not be found." + } + } } ], "Variables": { - "RandomSeed": "1111382645", + "RandomSeed": "2093118653", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json index daaab11ec3a0..9bb0667a728a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag().json @@ -6,30 +6,35 @@ "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 )", - "x-ms-client-request-id": "83533a8ff7f0f40003555c06f2fd2c0c", + "traceparent": "00-44e3d8d80f69b74186ed64b86302da27-8e6d5655fc84564b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17779fb3185dc7eb1958d5b15d8d91cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:33 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17f08258-c627-42c1-aded-ea2c879d5c5c", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "17f08258-c627-42c1-aded-ea2c879d5c5c", - "x-ms-routing-request-id": "WESTUS2:20210507T211634Z:17f08258-c627-42c1-aded-ea2c879d5c5c" + "x-ms-correlation-request-id": "db86aeb2-1910-46ab-83c7-bcc7fe80180d", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "db86aeb2-1910-46ab-83c7-bcc7fe80180d", + "x-ms-routing-request-id": "WESTUS2:20210614T233840Z:db86aeb2-1910-46ab-83c7-bcc7fe80180d" }, "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", @@ -42,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg1539?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg595?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-1fd34916dc7da04f9aec98680ed5fcac-8dffcc43a9220f4d-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": "814e70eaf21597548c6556eccc608ff8", + "traceparent": "00-84b53e9f8241bd42ab8b24329dceb491-7aac5593b68baa4a-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f730ee45d3d57bf6c3cf73efc2ba0c5a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -61,21 +66,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27049b5d-f91c-471c-a0a3-0c87be14c313", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "27049b5d-f91c-471c-a0a3-0c87be14c313", - "x-ms-routing-request-id": "WESTUS2:20210507T211635Z:27049b5d-f91c-471c-a0a3-0c87be14c313" + "x-ms-correlation-request-id": "94192257-541f-4a2c-a0b0-e08cd9245366", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "94192257-541f-4a2c-a0b0-e08cd9245366", + "x-ms-routing-request-id": "WESTUS2:20210614T233841Z:94192257-541f-4a2c-a0b0-e08cd9245366" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539", - "name": "testrg1539", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595", + "name": "testrg595", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +95,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-186cc2786c14e642a1986a81b3825cc2-75bd59c4c1d01742-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": "27c7cb3406bda67d7e80271c47bbb765", + "x-ms-client-request-id": "262395939c8f8df95b59fd64569cdd03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 GMT", + "Date": "Mon, 14 Jun 2021 23:38:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbe7226c-e46b-472c-a040-a8c6a1667828", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "dbe7226c-e46b-472c-a040-a8c6a1667828", - "x-ms-routing-request-id": "WESTUS2:20210507T211635Z:dbe7226c-e46b-472c-a040-a8c6a1667828" + "x-ms-correlation-request-id": "ec58ebb8-06d0-463f-9f03-2248c4d5c42f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "ec58ebb8-06d0-463f-9f03-2248c4d5c42f", + "x-ms-routing-request-id": "WESTUS2:20210614T233841Z:ec58ebb8-06d0-463f-9f03-2248c4d5c42f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-186cc2786c14e642a1986a81b3825cc2-00ee64c9656e7d45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7d2b970b7955ff48ec6392a90737f5cc", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a4e7be45debf80cc9c994877d7569ec8", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,9 +4193,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7d2b970b7955ff48ec6392a90737f5cc", - "x-ms-correlation-request-id": "3ba16727-cc19-4e3a-a69e-1015cec2b343", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;215,Microsoft.Compute/PutVM30Min;1175", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "18cfc808-4cbe-4989-8981-0e56be7ab2c0", - "x-ms-routing-request-id": "WESTUS2:20210507T211635Z:3ba16727-cc19-4e3a-a69e-1015cec2b343" + "x-ms-client-request-id": "a4e7be45debf80cc9c994877d7569ec8", + "x-ms-correlation-request-id": "361665d6-c0a6-4ba4-aac6-e32a4ae6e44c", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;212,Microsoft.Compute/PutVM30Min;1086", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "9cbad3e5-4fba-439d-84ae-bc362c50d461", + "x-ms-routing-request-id": "WESTUS2:20210614T233842Z:361665d6-c0a6-4ba4-aac6-e32a4ae6e44c" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9400\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9174\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c8c0879f7b64ba9682c83b5974d39f47", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb7dec96b525b47fc8a28af55481b505", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,9 +4256,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "432", + "Content-Length": "431", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c8c0879f7b64ba9682c83b5974d39f47", - "x-ms-correlation-request-id": "64f578d6-363d-416b-bef3-27b91db14f6a", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;213,Microsoft.Compute/PutVM30Min;1173", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "97cebe5a-4a8c-4acd-8bd0-35516b61923c", - "x-ms-routing-request-id": "WESTUS2:20210507T211636Z:64f578d6-363d-416b-bef3-27b91db14f6a" + "x-ms-client-request-id": "fb7dec96b525b47fc8a28af55481b505", + "x-ms-correlation-request-id": "fbcefe63-07f5-422b-a205-bb6bea6e33e1", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;211,Microsoft.Compute/PutVM30Min;1085", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "9c18edf1-f0ae-40bb-ac44-3786b9f6126c", + "x-ms-routing-request-id": "WESTUS2:20210614T233842Z:fbcefe63-07f5-422b-a205-bb6bea6e33e1" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9400\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9174\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4129,15 +4294,16 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "800ae71e2c769168700fde7c4bd4f5fc", + "traceparent": "00-3c9d98e7064cc14daedc481db395ad54-e17be9e2a0c11843-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ebe1142ca3d8a0a29e463207a7c0fdb5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4154,9 +4320,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "408", + "Content-Length": "407", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4165,17 +4331,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "800ae71e2c769168700fde7c4bd4f5fc", - "x-ms-correlation-request-id": "cd4a7dc1-133f-4312-96b2-38f31c280b55", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;211,Microsoft.Compute/PutVM30Min;1171", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "a7fee82b-11e9-407c-a270-707a64129ed6", - "x-ms-routing-request-id": "WESTUS2:20210507T211636Z:cd4a7dc1-133f-4312-96b2-38f31c280b55" + "x-ms-client-request-id": "ebe1142ca3d8a0a29e463207a7c0fdb5", + "x-ms-correlation-request-id": "9dbbcb62-9ed8-4dc9-8ef0-9bfbe5d01948", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;210,Microsoft.Compute/PutVM30Min;1084", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "18dda997-784b-4fb3-a1dd-2c094dff6b85", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:9dbbcb62-9ed8-4dc9-8ef0-9bfbe5d01948" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9400\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1539/providers/Microsoft.Compute/availabilitySets/test-aset9400\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9174\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg595/providers/Microsoft.Compute/availabilitySets/test-aset9174\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4191,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "715734451", + "RandomSeed": "1039339206", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json similarity index 91% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json index 36c8efb4389d..f6ecb2f2e2db 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartRemoveTag()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartRemoveTag()Async.json @@ -6,31 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb5089-4ce1cdbd20ae908f.", - "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": "83ad7877ba3de4311721caa6d9d12b3d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3b677609dd1024afcb5dfac4e962428", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:34 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a59865da-6f7a-4844-b0a2-9c453f8519ff", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "a59865da-6f7a-4844-b0a2-9c453f8519ff", - "x-ms-routing-request-id": "WESTUS2:20210507T211634Z:a59865da-6f7a-4844-b0a2-9c453f8519ff" + "x-ms-correlation-request-id": "7fff742e-7b1c-4d72-8576-154eb258721e", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "7fff742e-7b1c-4d72-8576-154eb258721e", + "x-ms-routing-request-id": "WESTUS2:20210614T233840Z:7fff742e-7b1c-4d72-8576-154eb258721e" }, "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", @@ -43,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9021?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg1014?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-0d8ad44aecd73b4da6237b4d26925990-be24984c2418e340-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": "d05faa3e7150d2af5d3d91d309ee7a4d", + "traceparent": "00-e043b5eac748e44a876e2dc3b315b1df-6d13626906377e4e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb8986483cb5a51f110825da790bfe50", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:35 GMT", + "Date": "Mon, 14 Jun 2021 23:38:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cad0d96e-ca06-49c7-afa1-bd11e147e8e9", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "cad0d96e-ca06-49c7-afa1-bd11e147e8e9", - "x-ms-routing-request-id": "WESTUS2:20210507T211635Z:cad0d96e-ca06-49c7-afa1-bd11e147e8e9" + "x-ms-correlation-request-id": "3b97baef-6901-46ab-8645-ea9fd004a059", + "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-request-id": "3b97baef-6901-46ab-8645-ea9fd004a059", + "x-ms-routing-request-id": "WESTUS2:20210614T233840Z:3b97baef-6901-46ab-8645-ea9fd004a059" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021", - "name": "testrg9021", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014", + "name": "testrg1014", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,25 +94,26 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", + "traceparent": "00-71cb833ab9a6da40a33171e8b13603b1-e5b6bdf0bc40e84d-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": "e08873b0cbf604e76709b97e983bdb89", + "x-ms-client-request-id": "f30f5c92dacd66bfc948ee2d4ef04a66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:35 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecef848f-55ba-4bc2-aaa2-913c71bacfc3", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "ecef848f-55ba-4bc2-aaa2-913c71bacfc3", - "x-ms-routing-request-id": "WESTUS2:20210507T211635Z:ecef848f-55ba-4bc2-aaa2-913c71bacfc3" + "x-ms-correlation-request-id": "749d46b9-bd41-4e43-b560-a88a299f8ccd", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "749d46b9-bd41-4e43-b560-a88a299f8ccd", + "x-ms-routing-request-id": "WESTUS2:20210614T233840Z:749d46b9-bd41-4e43-b560-a88a299f8ccd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4168,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "397ab8272739fd07b1df7d9f110e3350", + "traceparent": "00-71cb833ab9a6da40a33171e8b13603b1-e576e7cf80485a4f-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d52d3b38ab8e973b2dbf94242783a9e1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4029,7 +4196,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:35 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4205,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "397ab8272739fd07b1df7d9f110e3350", - "x-ms-correlation-request-id": "6f0a9224-87f5-49b8-adbd-03702909e75b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;214,Microsoft.Compute/PutVM30Min;1174", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "772b10c7-1aff-43c2-9b85-41a4ba0dd6cc", - "x-ms-routing-request-id": "WESTUS2:20210507T211636Z:6f0a9224-87f5-49b8-adbd-03702909e75b" + "x-ms-client-request-id": "d52d3b38ab8e973b2dbf94242783a9e1", + "x-ms-correlation-request-id": "d005bed8-4141-48ad-86ce-cee503e77a98", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;215,Microsoft.Compute/PutVM30Min;1089", + "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-request-id": "57aa696c-5425-4cf3-b2a8-17561cc4a46f", + "x-ms-routing-request-id": "WESTUS2:20210614T233841Z:d005bed8-4141-48ad-86ce-cee503e77a98" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8563\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset7234\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,15 +4230,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35e24ab613ff88646c8a2e164d48f359", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d04174db7ad0e72f2178c50e459b3f46", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4092,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4101,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "35e24ab613ff88646c8a2e164d48f359", - "x-ms-correlation-request-id": "8f9cd4fc-0f13-43f0-a328-df2a97a2b383", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;212,Microsoft.Compute/PutVM30Min;1172", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "824a51a5-45e2-4cb2-b98b-0b41b0e4e520", - "x-ms-routing-request-id": "WESTUS2:20210507T211636Z:8f9cd4fc-0f13-43f0-a328-df2a97a2b383" + "x-ms-client-request-id": "d04174db7ad0e72f2178c50e459b3f46", + "x-ms-correlation-request-id": "48eccde1-cfbe-4bf0-93b7-3fe45e7cb41d", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;214,Microsoft.Compute/PutVM30Min;1088", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-request-id": "427030b8-e441-4c4a-ab9f-c7f3e6a6ebb1", + "x-ms-routing-request-id": "WESTUS2:20210614T233841Z:48eccde1-cfbe-4bf0-93b7-3fe45e7cb41d" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8563\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset7234\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,15 +4295,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c6e87b1afd2b4550d7974b2a3732912f", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b3497cfdd942e111611ba7a0436c662e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4155,7 +4322,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:36 GMT", + "Date": "Mon, 14 Jun 2021 23:38:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4164,17 +4331,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c6e87b1afd2b4550d7974b2a3732912f", - "x-ms-correlation-request-id": "d5197046-c52c-4db4-a438-7bf8be412d6b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;210,Microsoft.Compute/PutVM30Min;1170", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "ffdb601d-0a16-4d33-9d79-65319c373bbc", - "x-ms-routing-request-id": "WESTUS2:20210507T211636Z:d5197046-c52c-4db4-a438-7bf8be412d6b" + "x-ms-client-request-id": "b3497cfdd942e111611ba7a0436c662e", + "x-ms-correlation-request-id": "3955ebb3-66c2-4956-912d-eb4aecfbaa42", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;213,Microsoft.Compute/PutVM30Min;1087", + "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-request-id": "cc25b17d-2cd8-44a1-8660-c139611ade9b", + "x-ms-routing-request-id": "WESTUS2:20210614T233842Z:3955ebb3-66c2-4956-912d-eb4aecfbaa42" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8563\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9021/providers/Microsoft.Compute/availabilitySets/test-aset8563\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset7234\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1014/providers/Microsoft.Compute/availabilitySets/test-aset7234\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4190,7 +4357,7 @@ } ], "Variables": { - "RandomSeed": "1247287163", + "RandomSeed": "620183169", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json index 8eeffe70f9f1..5f92f9c5e9a9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags().json @@ -6,30 +6,35 @@ "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 )", - "x-ms-client-request-id": "508214f5a67c31ccd9dfa274bb96438c", + "traceparent": "00-bf6cbe9d84e06148823a66f15fb57a6a-054839bb2a7a2a46-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f8d4c4440afeed656f64b1780f441ee5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:37 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e1f1fd4-be15-40c9-8d8e-7174f19e83f4", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "8e1f1fd4-be15-40c9-8d8e-7174f19e83f4", - "x-ms-routing-request-id": "WESTUS2:20210507T211637Z:8e1f1fd4-be15-40c9-8d8e-7174f19e83f4" + "x-ms-correlation-request-id": "f96aeb67-399d-4823-9b25-756998befe88", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "f96aeb67-399d-4823-9b25-756998befe88", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:f96aeb67-399d-4823-9b25-756998befe88" }, "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", @@ -42,16 +47,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7564?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6593?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-b0654f041c9c8d4d958f65b591bbd7d3-049d323685b4e547-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": "fa4c17a1c0bd02e0b5a13f5d5e6fb7ab", + "traceparent": "00-47db7e54a6fde4459de90e63dfcdf710-91673d480dbf4d47-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ea23017cef9d196fa5a469fe25540040", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +68,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a37e8d20-a7bc-4fcb-9818-9ecee7fb87be", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "a37e8d20-a7bc-4fcb-9818-9ecee7fb87be", - "x-ms-routing-request-id": "WESTUS2:20210507T211638Z:a37e8d20-a7bc-4fcb-9818-9ecee7fb87be" + "x-ms-correlation-request-id": "ffc30807-ff9d-4952-938a-13268e524470", + "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-request-id": "ffc30807-ff9d-4952-938a-13268e524470", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:ffc30807-ff9d-4952-938a-13268e524470" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564", - "name": "testrg7564", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593", + "name": "testrg6593", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +95,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e534d1b3511bbc4e8cfb8ba80a9e96a8-bcfaf5cd03e07b4e-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": "4e1bb9cea8aa3e50d01c2f905f1d8861", + "x-ms-client-request-id": "cc355f4fcc22190a6359a9702ad8e5fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8223fc95-1a3c-4de5-b9a6-df749db56db3", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "8223fc95-1a3c-4de5-b9a6-df749db56db3", - "x-ms-routing-request-id": "WESTUS2:20210507T211638Z:8223fc95-1a3c-4de5-b9a6-df749db56db3" + "x-ms-correlation-request-id": "d6f9a7a0-3359-4e81-97c0-c661d4aacc53", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d6f9a7a0-3359-4e81-97c0-c661d4aacc53", + "x-ms-routing-request-id": "WESTUS2:20210614T233844Z:d6f9a7a0-3359-4e81-97c0-c661d4aacc53" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +193,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +268,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +438,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +493,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +568,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +739,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +794,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +870,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +946,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1021,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1098,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1175,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1208,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1264,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1339,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1413,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1478,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1552,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1619,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1686,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1761,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1828,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1872,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1928,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1983,11 @@ "Switzerland North", "Germany 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 +2037,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2086,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2130,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2178,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2226,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2414,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", @@ -2381,9 +2464,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", @@ -2429,9 +2514,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", @@ -2477,9 +2564,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", @@ -2525,9 +2614,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", @@ -2573,9 +2664,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", @@ -2733,9 +2826,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" @@ -2776,9 +2881,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", @@ -2841,9 +2948,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", @@ -2905,9 +3014,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", @@ -2954,9 +3065,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", @@ -3001,7 +3114,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3255,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3310,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3356,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3402,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3447,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3492,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3537,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3582,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3627,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3672,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3740,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3794,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", @@ -3801,9 +3941,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3996,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", @@ -3989,9 +4143,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4168,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593/providers/Microsoft.Compute/availabilitySets/test-aset1723?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-e534d1b3511bbc4e8cfb8ba80a9e96a8-baee7c354c084648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "be7729c437caa1534dc7048dd47a70ea", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8e8345ca76e65d4df5965fcee4a10b0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4030,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "be7729c437caa1534dc7048dd47a70ea", - "x-ms-correlation-request-id": "9d77f82a-9f1b-413f-8de1-7f449b6c0ed1", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;209,Microsoft.Compute/PutVM30Min;1169", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "a8f6466e-5250-493d-adbf-60758c5fa9a7", - "x-ms-routing-request-id": "WESTUS2:20210507T211638Z:9d77f82a-9f1b-413f-8de1-7f449b6c0ed1" + "x-ms-client-request-id": "b8e8345ca76e65d4df5965fcee4a10b0", + "x-ms-correlation-request-id": "1d6159f1-9c33-435e-b93c-847a157c1c6d", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;207,Microsoft.Compute/PutVM30Min;1081", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-request-id": "61da9210-87a1-4ed0-af67-cd64cc350af1", + "x-ms-routing-request-id": "WESTUS2:20210614T233844Z:1d6159f1-9c33-435e-b93c-847a157c1c6d" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5543\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset1723\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593/providers/Microsoft.Compute/availabilitySets/test-aset1723\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4229,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593/providers/Microsoft.Compute/availabilitySets/test-aset1723?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "459afbb7ec3f9711667901e3a4c36a56", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "20c803838817a8e68ad0edc9660e2a19", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4093,7 +4258,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:39 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "459afbb7ec3f9711667901e3a4c36a56", - "x-ms-correlation-request-id": "1a7fae55-dff4-45b7-862c-a91458bf42d8", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;207,Microsoft.Compute/PutVM30Min;1167", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "8b8515af-5165-494a-9735-bfe2650274b9", - "x-ms-routing-request-id": "WESTUS2:20210507T211639Z:1a7fae55-dff4-45b7-862c-a91458bf42d8" + "x-ms-client-request-id": "20c803838817a8e68ad0edc9660e2a19", + "x-ms-correlation-request-id": "8b1b162c-51fb-4b46-b568-2a275a009e9e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;206,Microsoft.Compute/PutVM30Min;1080", + "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-request-id": "b4beb187-6c82-4797-96f8-bb39152ee04c", + "x-ms-routing-request-id": "WESTUS2:20210614T233845Z:8b1b162c-51fb-4b46-b568-2a275a009e9e" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5543\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7564/providers/Microsoft.Compute/availabilitySets/test-aset5543\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset1723\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6593/providers/Microsoft.Compute/availabilitySets/test-aset1723\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4130,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "956944711", + "RandomSeed": "1437558670", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json index 70d30c1eccee..057883ae994e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartSetTags()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartSetTags()Async.json @@ -6,31 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Request-Id": "|bdfb508a-4ce1cdbd20ae908f.", - "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": "8481dae3fe25d21b96df30069682fed1", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7ca1654e201742e6dd38baadfa31167f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:37 GMT", + "Date": "Mon, 14 Jun 2021 23:38:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f33a908d-e07b-4dd6-a66e-d80880d9ac41", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "f33a908d-e07b-4dd6-a66e-d80880d9ac41", - "x-ms-routing-request-id": "WESTUS2:20210507T211637Z:f33a908d-e07b-4dd6-a66e-d80880d9ac41" + "x-ms-correlation-request-id": "a7e2d786-66df-44da-a3c7-a0779ac5bf6f", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "a7e2d786-66df-44da-a3c7-a0779ac5bf6f", + "x-ms-routing-request-id": "WESTUS2:20210614T233842Z:a7e2d786-66df-44da-a3c7-a0779ac5bf6f" }, "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", @@ -43,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6303?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8741?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-985837ece30e8d4fa9bfbdc2fb5d87e2-a24c4d343ae1c342-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": "54b819fe7d99bdd26e609105bbf276e1", + "traceparent": "00-c90ee0fb7cf03a48811fb0ca52ac99b9-af0651cf4769764e-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0915228b63be8874b6b4ca5915d720a6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fcc8b46-e23c-4c63-9385-420e96e16642", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "3fcc8b46-e23c-4c63-9385-420e96e16642", - "x-ms-routing-request-id": "WESTUS2:20210507T211638Z:3fcc8b46-e23c-4c63-9385-420e96e16642" + "x-ms-correlation-request-id": "df08c7d2-ae1e-43de-94cf-6aa89f789750", + "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-request-id": "df08c7d2-ae1e-43de-94cf-6aa89f789750", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:df08c7d2-ae1e-43de-94cf-6aa89f789750" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303", - "name": "testrg6303", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741", + "name": "testrg8741", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -92,24 +95,24 @@ "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 )", - "x-ms-client-request-id": "6fb9b54a229f28be0456944b785cf3af", + "x-ms-client-request-id": "d168890be60f70501e36142a85a897f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d1e9dd5-fe48-4f41-96d1-1a1750d34c63", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "9d1e9dd5-fe48-4f41-96d1-1a1750d34c63", - "x-ms-routing-request-id": "WESTUS2:20210507T211638Z:9d1e9dd5-fe48-4f41-96d1-1a1750d34c63" + "x-ms-correlation-request-id": "aa6e8284-d2b0-4a13-bad9-82cfd0a65d77", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "aa6e8284-d2b0-4a13-bad9-82cfd0a65d77", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:aa6e8284-d2b0-4a13-bad9-82cfd0a65d77" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1927,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2413,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", @@ -2381,9 +2463,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", @@ -2429,9 +2513,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", @@ -2477,9 +2563,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", @@ -2525,9 +2613,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", @@ -2573,9 +2663,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", @@ -2733,9 +2825,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" @@ -2776,9 +2880,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", @@ -2841,9 +2947,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", @@ -2905,9 +3013,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", @@ -2954,9 +3064,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", @@ -3001,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3793,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", @@ -3801,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3995,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", @@ -3989,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4167,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741/providers/Microsoft.Compute/availabilitySets/test-aset9210?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bd9ac0854a13af5cc7b69d8accdaecb9", + "Request-Id": "|cc332329-4095a54af43549bb.", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "eadedc478fff2d01f3606b1ce8c8619a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4029,7 +4195,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:38 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4204,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd9ac0854a13af5cc7b69d8accdaecb9", - "x-ms-correlation-request-id": "2c4432e5-c84a-4886-842c-5494247516c2", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;208,Microsoft.Compute/PutVM30Min;1168", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "5ebd0843-e653-4067-bca2-b25da027f729", - "x-ms-routing-request-id": "WESTUS2:20210507T211639Z:2c4432e5-c84a-4886-842c-5494247516c2" + "x-ms-client-request-id": "eadedc478fff2d01f3606b1ce8c8619a", + "x-ms-correlation-request-id": "c70f6533-34d6-4bf6-96e1-9f34d5f921e0", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;209,Microsoft.Compute/PutVM30Min;1083", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-request-id": "2ce0af9c-4103-449d-935f-f0f5bcd3942a", + "x-ms-routing-request-id": "WESTUS2:20210614T233843Z:c70f6533-34d6-4bf6-96e1-9f34d5f921e0" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8885\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9210\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741/providers/Microsoft.Compute/availabilitySets/test-aset9210\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,15 +4229,16 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741/providers/Microsoft.Compute/availabilitySets/test-aset9210?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3235569d23db00de590aa7e884345b29", + "traceparent": "00-3880a00fcc138442b78b80b357f4d4b4-007edddc1f288a4b-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "facd6532bb417b82873addaf7b348756", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4092,7 +4259,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:16:39 GMT", + "Date": "Mon, 14 Jun 2021 23:38:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4101,17 +4268,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3235569d23db00de590aa7e884345b29", - "x-ms-correlation-request-id": "57a8d2a0-a82b-4de6-a203-3ef667c80d66", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;206,Microsoft.Compute/PutVM30Min;1166", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "4176b6ff-6ee0-4975-9707-00c087040a88", - "x-ms-routing-request-id": "WESTUS2:20210507T211639Z:57a8d2a0-a82b-4de6-a203-3ef667c80d66" + "x-ms-client-request-id": "facd6532bb417b82873addaf7b348756", + "x-ms-correlation-request-id": "693150db-1bbc-4561-88d4-c861166f1791", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;208,Microsoft.Compute/PutVM30Min;1082", + "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-request-id": "363fb689-a1a6-4c22-aae9-bbbc7e928643", + "x-ms-routing-request-id": "WESTUS2:20210614T233844Z:693150db-1bbc-4561-88d4-c861166f1791" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8885\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6303/providers/Microsoft.Compute/availabilitySets/test-aset8885\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9210\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8741/providers/Microsoft.Compute/availabilitySets/test-aset9210\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4129,7 +4296,7 @@ } ], "Variables": { - "RandomSeed": "231029312", + "RandomSeed": "1175243724", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json index cdc61ac0337b..9676aa4fcfd7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate().json @@ -6,31 +6,34 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5c54ff9efa8a3849b36fb49388990207-7045c42044320349-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": "c597694f2054fdc777e61ca1763f76b5", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6e1fd5dd35916aed18121d3c0fd85d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:50 GMT", + "Date": "Mon, 14 Jun 2021 23:38:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01835917-ecd0-453c-a5fb-f9d8724d839c", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "01835917-ecd0-453c-a5fb-f9d8724d839c", - "x-ms-routing-request-id": "WESTUS2:20210507T212851Z:01835917-ecd0-453c-a5fb-f9d8724d839c" + "x-ms-correlation-request-id": "97de4c66-35c9-45ac-8441-56fd674c30c1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "97de4c66-35c9-45ac-8441-56fd674c30c1", + "x-ms-routing-request-id": "WESTUS2:20210614T233845Z:97de4c66-35c9-45ac-8441-56fd674c30c1" }, "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", @@ -43,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2406?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4295?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-f8abd1eb3b1fd7409ad627e4e0edd7b8-ba095ecaa3ab3f4a-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": "0051bb7698e41ee352c74fdf0d506095", + "traceparent": "00-c1c9272c8529164ca7a66255cfb92c9c-0139d5418f829f40-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "72df084064c62fc0030d1a1c8daaedca", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d20cd377-6a33-44b1-8e01-281fbf2970b5", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "d20cd377-6a33-44b1-8e01-281fbf2970b5", - "x-ms-routing-request-id": "WESTUS2:20210507T212852Z:d20cd377-6a33-44b1-8e01-281fbf2970b5" + "x-ms-correlation-request-id": "e8f107e3-edb5-4f4a-8a70-2210b9b742c4", + "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-request-id": "e8f107e3-edb5-4f4a-8a70-2210b9b742c4", + "x-ms-routing-request-id": "WESTUS2:20210614T233846Z:e8f107e3-edb5-4f4a-8a70-2210b9b742c4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406", - "name": "testrg2406", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295", + "name": "testrg4295", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -92,24 +95,24 @@ "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 )", - "x-ms-client-request-id": "3ddd61ef14aace8c3e784539422d3559", + "x-ms-client-request-id": "285968e9610a169e6e937505ff416a84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:51 GMT", + "Date": "Mon, 14 Jun 2021 23:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0525002b-50fa-47fc-90bb-973fa70022f0", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "0525002b-50fa-47fc-90bb-973fa70022f0", - "x-ms-routing-request-id": "WESTUS2:20210507T212852Z:0525002b-50fa-47fc-90bb-973fa70022f0" + "x-ms-correlation-request-id": "08291735-b452-413d-b586-724b370aecca", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "08291735-b452-413d-b586-724b370aecca", + "x-ms-routing-request-id": "WESTUS2:20210614T233847Z:08291735-b452-413d-b586-724b370aecca" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1927,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2413,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", @@ -2381,9 +2463,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", @@ -2429,9 +2513,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", @@ -2477,9 +2563,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", @@ -2525,9 +2613,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", @@ -2573,9 +2663,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", @@ -2733,9 +2825,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" @@ -2776,9 +2880,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", @@ -2841,9 +2947,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", @@ -2905,9 +3013,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", @@ -2954,9 +3064,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", @@ -3001,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3793,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", @@ -3801,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3995,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", @@ -3989,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295/providers/Microsoft.Compute/availabilitySets/test-aset105?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bc156fd66bf5b4d1a70259771e6a95bb", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "634fb8a5961520988655c694f943d734", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4029,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "406", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:53 GMT", + "Date": "Mon, 14 Jun 2021 23:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4038,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bc156fd66bf5b4d1a70259771e6a95bb", - "x-ms-correlation-request-id": "a9438dd0-0248-4f8a-8898-f842cbdfdd2f", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1144", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "bb689785-ce78-4a2f-bd58-90469efb5bf0", - "x-ms-routing-request-id": "WESTUS2:20210507T212853Z:a9438dd0-0248-4f8a-8898-f842cbdfdd2f" + "x-ms-client-request-id": "634fb8a5961520988655c694f943d734", + "x-ms-correlation-request-id": "96ede96a-d152-4585-8473-4e3aff0a98ea", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;203,Microsoft.Compute/PutVM30Min;1077", + "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-request-id": "1c98d5f7-07db-4fde-b5f1-80d34f6a92e8", + "x-ms-routing-request-id": "WESTUS2:20210614T233847Z:96ede96a-d152-4585-8473-4e3aff0a98ea" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset273\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset105\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295/providers/Microsoft.Compute/availabilitySets/test-aset105\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4063,15 +4228,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295/providers/Microsoft.Compute/availabilitySets/test-aset105?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e0368519d84b8476902995a7bb14b0d4", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2e897af679e5312cf38a2b49b0a1c2a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4092,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Length": "430", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:54 GMT", + "Date": "Mon, 14 Jun 2021 23:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4101,17 +4266,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e0368519d84b8476902995a7bb14b0d4", - "x-ms-correlation-request-id": "61d677f6-a9cc-4d04-83df-2f408b49a0a6", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1143", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "e0fdd081-0f33-4c1d-bd2f-177afe4e0d2e", - "x-ms-routing-request-id": "WESTUS2:20210507T212854Z:61d677f6-a9cc-4d04-83df-2f408b49a0a6" + "x-ms-client-request-id": "f2e897af679e5312cf38a2b49b0a1c2a", + "x-ms-correlation-request-id": "03510ef7-cbf7-4aca-98e4-57dcf4a2f114", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;202,Microsoft.Compute/PutVM30Min;1076", + "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-request-id": "f39dce90-d812-4ef1-bdff-f8be086558fa", + "x-ms-routing-request-id": "WESTUS2:20210614T233848Z:03510ef7-cbf7-4aca-98e4-57dcf4a2f114" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset273\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2406/providers/Microsoft.Compute/availabilitySets/test-aset273\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset105\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4295/providers/Microsoft.Compute/availabilitySets/test-aset105\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4129,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "544021613", + "RandomSeed": "2144782", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json index 2ee4aa365645..8be9ef5bd0b5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/StartUpdate()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/StartUpdate()Async.json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "2a3b0b67ae747b09d1f609de64052804", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e11969d1ef1eae12b5fc0d4a99a89a63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:50 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32c5734b-2c6a-4bae-8173-9d590e6c9df0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "32c5734b-2c6a-4bae-8173-9d590e6c9df0", - "x-ms-routing-request-id": "WESTUS2:20210507T212851Z:32c5734b-2c6a-4bae-8173-9d590e6c9df0" + "x-ms-correlation-request-id": "e9ee0a7f-5292-44ae-84d5-f168e28ad094", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "e9ee0a7f-5292-44ae-84d5-f168e28ad094", + "x-ms-routing-request-id": "WESTUS2:20210614T233844Z:e9ee0a7f-5292-44ae-84d5-f168e28ad094" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg754?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg4371?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-106995a569edb74aac60cbfe5466dee0-7511da2257ffb243-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": "dd3db9509dc07aac058ae2fee5f662a1", + "traceparent": "00-835461d6201ae94aa39ff61533ef2b25-8add0d722452384c-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b478f2473e3d05d7b955daaa1811d46", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -61,21 +65,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "226", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29405a4a-438a-4060-9c2c-9a589e4664a0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "29405a4a-438a-4060-9c2c-9a589e4664a0", - "x-ms-routing-request-id": "WESTUS2:20210507T212852Z:29405a4a-438a-4060-9c2c-9a589e4664a0" + "x-ms-correlation-request-id": "af76c917-3daf-4fbf-9379-9d38825d9d6b", + "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-request-id": "af76c917-3daf-4fbf-9379-9d38825d9d6b", + "x-ms-routing-request-id": "WESTUS2:20210614T233845Z:af76c917-3daf-4fbf-9379-9d38825d9d6b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754", - "name": "testrg754", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371", + "name": "testrg4371", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77e4b2a553af204292187f2459eb2de2-242922f52ad5b443-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": "12bdbb4ac5b9ec264f701494ba6afb47", + "x-ms-client-request-id": "34792600f0c8b1d5cb85bd53e80c7608", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b90285a6-d038-49f9-af4b-db9f835076ce", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "b90285a6-d038-49f9-af4b-db9f835076ce", - "x-ms-routing-request-id": "WESTUS2:20210507T212852Z:b90285a6-d038-49f9-af4b-db9f835076ce" + "x-ms-correlation-request-id": "76f66ad7-5455-4d2b-8938-1c58232b2e78", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "76f66ad7-5455-4d2b-8938-1c58232b2e78", + "x-ms-routing-request-id": "WESTUS2:20210614T233845Z:76f66ad7-5455-4d2b-8938-1c58232b2e78" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1927,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2413,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", @@ -2381,9 +2463,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", @@ -2429,9 +2513,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", @@ -2477,9 +2563,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", @@ -2525,9 +2613,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", @@ -2573,9 +2663,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", @@ -2733,9 +2825,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" @@ -2776,9 +2880,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", @@ -2841,9 +2947,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", @@ -2905,9 +3013,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", @@ -2954,9 +3064,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", @@ -3001,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3793,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", @@ -3801,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3995,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", @@ -3989,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371/providers/Microsoft.Compute/availabilitySets/test-aset8410?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-77e4b2a553af204292187f2459eb2de2-9866d12e8cbc264e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea3ca668a63b8f6eaf6e23267debffa7", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b0251b42ee1fbcf510a359b503147af0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,9 +4192,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "407", + "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:52 GMT", + "Date": "Mon, 14 Jun 2021 23:38:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ea3ca668a63b8f6eaf6e23267debffa7", - "x-ms-correlation-request-id": "44efb54e-a640-4017-9858-df5a7c2595e1", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1145", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "49a47c2b-3cce-4331-878f-521202aa3a79", - "x-ms-routing-request-id": "WESTUS2:20210507T212853Z:44efb54e-a640-4017-9858-df5a7c2595e1" + "x-ms-client-request-id": "b0251b42ee1fbcf510a359b503147af0", + "x-ms-correlation-request-id": "c9a36747-dfeb-486c-8fa2-9e14c0911237", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;205,Microsoft.Compute/PutVM30Min;1079", + "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-request-id": "0ed7bb5b-7e14-4c75-84a5-c178c9759610", + "x-ms-routing-request-id": "WESTUS2:20210614T233846Z:c9a36747-dfeb-486c-8fa2-9e14c0911237" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9150\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset8410\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371/providers/Microsoft.Compute/availabilitySets/test-aset8410\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4228,16 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371/providers/Microsoft.Compute/availabilitySets/test-aset8410?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "507cb6e6b625a3ad4c2e624ba1ff6e63", + "traceparent": "00-685b42ad936d134799ec2e8b32d683fd-37d2a6dda25dba43-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "665fa2e696f7123f30bd2325961fadb6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,9 +4256,9 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "431", + "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:54 GMT", + "Date": "Mon, 14 Jun 2021 23:38:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4267,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "507cb6e6b625a3ad4c2e624ba1ff6e63", - "x-ms-correlation-request-id": "c5cc2f7f-c88e-47f2-b16c-6a073dde9972", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1142", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "eb882e59-9c0e-4aa9-b07e-e5cc106a0082", - "x-ms-routing-request-id": "WESTUS2:20210507T212854Z:c5cc2f7f-c88e-47f2-b16c-6a073dde9972" + "x-ms-client-request-id": "665fa2e696f7123f30bd2325961fadb6", + "x-ms-correlation-request-id": "42a325d0-90c8-4efa-88c5-6fe4126e0207", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;204,Microsoft.Compute/PutVM30Min;1078", + "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-request-id": "4a15c739-0d65-4266-8a90-deb7740281e5", + "x-ms-routing-request-id": "WESTUS2:20210614T233847Z:42a325d0-90c8-4efa-88c5-6fe4126e0207" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9150\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg754/providers/Microsoft.Compute/availabilitySets/test-aset9150\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset8410\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg4371/providers/Microsoft.Compute/availabilitySets/test-aset8410\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4130,7 +4295,7 @@ } ], "Variables": { - "RandomSeed": "80253047", + "RandomSeed": "1842700954", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update().json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json index 11a98ad336e8..2f03e1b9117c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update().json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "b6b6ef4537da47932d9f5fdb6701b52d", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e506fd09866bef5bd86e793e8fb54f44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:55 GMT", + "Date": "Mon, 14 Jun 2021 23:38:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5eb8310-426d-4024-8e66-018b23b14f33", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "d5eb8310-426d-4024-8e66-018b23b14f33", - "x-ms-routing-request-id": "WESTUS2:20210507T212855Z:d5eb8310-426d-4024-8e66-018b23b14f33" + "x-ms-correlation-request-id": "59e69e4c-4a95-42ad-a5f5-15669ed81187", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "59e69e4c-4a95-42ad-a5f5-15669ed81187", + "x-ms-routing-request-id": "WESTUS2:20210614T233849Z:59e69e4c-4a95-42ad-a5f5-15669ed81187" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9245?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3702?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-5c9d6f485e1c714fa7721d30c14a2a7d-656e35981e19cc48-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": "9492344e8ef1d7442daa415a5b15a44f", + "traceparent": "00-498ee5b371a4554293d6e39e14a44147-7c014bedee044741-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2a753a2838d482543d4520dd824442df", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a9eccd6-6889-4625-8ed8-56db74ecea9d", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "1a9eccd6-6889-4625-8ed8-56db74ecea9d", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:1a9eccd6-6889-4625-8ed8-56db74ecea9d" + "x-ms-correlation-request-id": "a4f38d8c-5e1b-448b-8cb8-687624e17105", + "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-request-id": "a4f38d8c-5e1b-448b-8cb8-687624e17105", + "x-ms-routing-request-id": "WESTUS2:20210614T233850Z:a4f38d8c-5e1b-448b-8cb8-687624e17105" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245", - "name": "testrg9245", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702", + "name": "testrg3702", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -91,24 +95,24 @@ "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 )", - "x-ms-client-request-id": "f565682f8a0a9754a4459cc1f9ce65a1", + "x-ms-client-request-id": "b20760e62f960e6afd2a271008faba28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00ee9cfc-5bce-4060-aa85-add060da74c9", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "00ee9cfc-5bce-4060-aa85-add060da74c9", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:00ee9cfc-5bce-4060-aa85-add060da74c9" + "x-ms-correlation-request-id": "0c9218fd-da0a-41d1-9f32-f7678ac1b265", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "0c9218fd-da0a-41d1-9f32-f7678ac1b265", + "x-ms-routing-request-id": "WESTUS2:20210614T233850Z:0c9218fd-da0a-41d1-9f32-f7678ac1b265" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -188,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -261,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -429,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -472,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -545,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -714,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -757,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -831,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -905,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -978,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1053,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1128,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1159,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1214,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1287,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1359,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1422,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1494,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1559,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1624,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1697,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1762,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1805,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1859,9 +1927,11 @@ "Switzerland North", "Germany 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 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2011,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2054,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2100,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2146,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2332,9 +2413,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", @@ -2380,9 +2463,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", @@ -2428,9 +2513,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", @@ -2476,9 +2563,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", @@ -2524,9 +2613,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", @@ -2572,9 +2663,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", @@ -2732,9 +2825,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" @@ -2775,9 +2880,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", @@ -2840,9 +2947,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", @@ -2904,9 +3013,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", @@ -2953,9 +3064,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", @@ -3000,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3140,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3183,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3228,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3273,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3317,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3361,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3405,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3449,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3493,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3537,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3603,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3655,9 +3793,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", @@ -3800,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3843,9 +3995,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", @@ -3988,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4001,15 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702/providers/Microsoft.Compute/availabilitySets/test-aset6798?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.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8cadd130538c7260deac8d52ecd289bb", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b243fd53409b2c4632d403b12562936", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4028,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4037,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8cadd130538c7260deac8d52ecd289bb", - "x-ms-correlation-request-id": "b46f0e8c-b4bf-4589-bd6f-b0efb6075f71", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1140", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "76e1ddd6-fd68-43ca-8bc3-74c8b611b799", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:b46f0e8c-b4bf-4589-bd6f-b0efb6075f71" + "x-ms-client-request-id": "8b243fd53409b2c4632d403b12562936", + "x-ms-correlation-request-id": "9de6b00b-2216-4a35-8fec-f5e0eff75105", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;199,Microsoft.Compute/PutVM30Min;1073", + "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-request-id": "e7293723-9cf1-4ebf-ac37-a49cfd7fa4c1", + "x-ms-routing-request-id": "WESTUS2:20210614T233850Z:9de6b00b-2216-4a35-8fec-f5e0eff75105" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1420\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6798\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702/providers/Microsoft.Compute/availabilitySets/test-aset6798\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4062,15 +4228,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702/providers/Microsoft.Compute/availabilitySets/test-aset6798?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "442bb9dbc3f6dc5407f3175dfd02aad1", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04acb565541eb13e9b544f68ee2efca7", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4091,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:57 GMT", + "Date": "Mon, 14 Jun 2021 23:38:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4100,17 +4266,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "442bb9dbc3f6dc5407f3175dfd02aad1", - "x-ms-correlation-request-id": "e409e688-c62f-47eb-8fd6-815a74cd51e9", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1138", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "586c6448-5f34-44ff-88c9-d2f2348cab37", - "x-ms-routing-request-id": "WESTUS2:20210507T212857Z:e409e688-c62f-47eb-8fd6-815a74cd51e9" + "x-ms-client-request-id": "04acb565541eb13e9b544f68ee2efca7", + "x-ms-correlation-request-id": "083e9ce4-cdf1-48ef-a955-050d282d01e6", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;198,Microsoft.Compute/PutVM30Min;1072", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "facda09f-606e-4e86-8940-1e1299671008", + "x-ms-routing-request-id": "WESTUS2:20210614T233851Z:083e9ce4-cdf1-48ef-a955-050d282d01e6" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset1420\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9245/providers/Microsoft.Compute/availabilitySets/test-aset1420\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset6798\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3702/providers/Microsoft.Compute/availabilitySets/test-aset6798\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4128,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "2087312513", + "RandomSeed": "863964699", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json similarity index 92% rename from sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update()Async.json rename to sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json index b527ca4648cb..0c9f943be9fe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/Update()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceOperationsTests/Update()Async.json @@ -6,30 +6,34 @@ "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 )", - "x-ms-client-request-id": "9579379861f99dc1dd66f902a1607051", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "296de7733baac3cbe23b00a2abdabbb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "397", + "Content-Length": "450", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:54 GMT", + "Date": "Mon, 14 Jun 2021 23:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cbe9932-39a8-4f56-aed1-8bc49ce9bbed", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "3cbe9932-39a8-4f56-aed1-8bc49ce9bbed", - "x-ms-routing-request-id": "WESTUS2:20210507T212855Z:3cbe9932-39a8-4f56-aed1-8bc49ce9bbed" + "x-ms-correlation-request-id": "7a20dc4e-f658-421d-84cd-3eeea95d1b13", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "7a20dc4e-f658-421d-84cd-3eeea95d1b13", + "x-ms-routing-request-id": "WESTUS2:20210614T233847Z:7a20dc4e-f658-421d-84cd-3eeea95d1b13" }, "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", @@ -42,16 +46,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2997?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5800?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "34", "Content-Type": "application/json", - "traceparent": "00-592b237abf2caa4f85e57dfc7012574a-4e39bb69d6aa3e42-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": "653b651ea0fa15f75bd5c0699090c6f7", + "traceparent": "00-84ac6eefcc030245adecd1de66b608f8-07ad6f7d590f5b48-00", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d7f769d24fb91dce1e2d320b91646695", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -63,19 +67,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:55 GMT", + "Date": "Mon, 14 Jun 2021 23:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88b76583-a17b-45be-8b4a-7e19be398ca0", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "88b76583-a17b-45be-8b4a-7e19be398ca0", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:88b76583-a17b-45be-8b4a-7e19be398ca0" + "x-ms-correlation-request-id": "1a0295b8-4e8d-4cde-adc7-769fba420069", + "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-request-id": "1a0295b8-4e8d-4cde-adc7-769fba420069", + "x-ms-routing-request-id": "WESTUS2:20210614T233848Z:1a0295b8-4e8d-4cde-adc7-769fba420069" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997", - "name": "testrg2997", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800", + "name": "testrg5800", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -90,26 +94,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7347e88740e1954e8ae50724dc33c4e1-33c6f9662e62364f-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": "9bd99f59d883428a3cd44a3a39bc0e2c", + "x-ms-client-request-id": "2c5af1692f1fd74da5bba4e5cb2d29a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "52395", + "Content-Length": "54013", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:55 GMT", + "Date": "Mon, 14 Jun 2021 23:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99c179e8-6586-4c8a-bb19-69cf138698e4", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "99c179e8-6586-4c8a-bb19-69cf138698e4", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:99c179e8-6586-4c8a-bb19-69cf138698e4" + "x-ms-correlation-request-id": "ad533f80-cb78-41c2-86a7-08998527754b", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "ad533f80-cb78-41c2-86a7-08998527754b", + "x-ms-routing-request-id": "WESTUS2:20210614T233848Z:ad533f80-cb78-41c2-86a7-08998527754b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -189,9 +192,11 @@ "Switzerland North", "Germany 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", @@ -262,9 +267,11 @@ "Switzerland North", "Germany 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", @@ -430,9 +437,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -473,9 +492,11 @@ "Switzerland North", "Germany 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", @@ -546,9 +567,11 @@ "Switzerland North", "Germany 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", @@ -715,9 +738,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" @@ -758,9 +793,11 @@ "Switzerland North", "Germany 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", @@ -832,9 +869,11 @@ "Switzerland North", "Germany 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", @@ -906,9 +945,11 @@ "Switzerland North", "Germany 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", @@ -979,9 +1020,11 @@ "Switzerland North", "Germany 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", @@ -1054,9 +1097,11 @@ "Switzerland North", "Germany 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", @@ -1129,9 +1174,11 @@ "Switzerland North", "Germany 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", @@ -1160,6 +1207,7 @@ "resourceType": "locations", "locations": [], "apiVersions": [ + "2021-04-01", "2021-03-01", "2020-12-01", "2020-06-01", @@ -1215,9 +1263,11 @@ "Switzerland North", "Germany 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", @@ -1288,9 +1338,11 @@ "Switzerland North", "Germany 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", @@ -1360,9 +1412,11 @@ "Switzerland North", "Germany 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", @@ -1423,9 +1477,11 @@ "Switzerland North", "Germany 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", @@ -1495,9 +1551,11 @@ "Switzerland North", "Germany 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", @@ -1560,9 +1618,11 @@ "Switzerland North", "Germany 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", @@ -1625,9 +1685,11 @@ "Switzerland North", "Germany 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", @@ -1698,9 +1760,11 @@ "Switzerland North", "Germany 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", @@ -1763,7 +1827,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2020-12-01" @@ -1806,9 +1871,11 @@ "Switzerland North", "Germany 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", @@ -1860,9 +1927,11 @@ "Switzerland North", "Germany 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", @@ -1913,9 +1982,11 @@ "Switzerland North", "Germany 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 +2036,11 @@ "Switzerland North", "Germany 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", @@ -2012,6 +2085,7 @@ "Switzerland North", "Germany West Central", "Norway East", + "West US 3", "Jio India West" ], "apiVersions": [ @@ -2055,9 +2129,11 @@ "Switzerland North", "Germany 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" @@ -2101,9 +2177,11 @@ "Switzerland North", "Germany 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" @@ -2147,9 +2225,11 @@ "Switzerland North", "Germany 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", @@ -2333,9 +2413,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", @@ -2381,9 +2463,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", @@ -2429,9 +2513,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", @@ -2477,9 +2563,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", @@ -2525,9 +2613,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", @@ -2573,9 +2663,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", @@ -2733,9 +2825,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" @@ -2776,9 +2880,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", @@ -2841,9 +2947,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", @@ -2905,9 +3013,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", @@ -2954,9 +3064,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", @@ -3001,7 +3113,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3141,9 +3254,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3184,7 +3309,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3229,7 +3355,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3274,7 +3401,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3318,7 +3446,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3362,7 +3491,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01" @@ -3406,7 +3536,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3450,7 +3581,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3494,7 +3626,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2021-03-01", @@ -3538,9 +3671,11 @@ "Switzerland North", "Germany 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", @@ -3604,9 +3739,11 @@ "Switzerland North", "Germany 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", @@ -3656,9 +3793,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", @@ -3801,9 +3940,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -3844,9 +3995,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", @@ -3989,9 +4142,21 @@ "location": "Korea Central", "zones": [] }, + { + "location": "West US 3", + "zones": [ + "2", + "1", + "3" + ] + }, { "location": "Norway East", "zones": [] + }, + { + "location": "East Asia", + "zones": [] } ], "capabilities": "SupportsTags, SupportsLocation" @@ -4002,16 +4167,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800/providers/Microsoft.Compute/availabilitySets/test-aset9575?api-version=2021-04-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "133", "Content-Type": "application/json", - "traceparent": "00-7347e88740e1954e8ae50724dc33c4e1-27d70a7fba589648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "70f1fd8f9d9282967f9e8c00344dd633", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b28ea2d1b9569f970c8b0d99b850d69a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4030,7 +4194,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4039,17 +4203,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "70f1fd8f9d9282967f9e8c00344dd633", - "x-ms-correlation-request-id": "2052aae9-4f7c-4b71-b1ce-9f945b048463", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1141", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "dbabb863-a02c-4016-9dcc-3880a6192bd1", - "x-ms-routing-request-id": "WESTUS2:20210507T212856Z:2052aae9-4f7c-4b71-b1ce-9f945b048463" + "x-ms-client-request-id": "b28ea2d1b9569f970c8b0d99b850d69a", + "x-ms-correlation-request-id": "83b7428e-3395-48e8-a86d-5e12f14b6660", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;201,Microsoft.Compute/PutVM30Min;1075", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "4a263388-0726-4f44-ad06-b7e673b2e14e", + "x-ms-routing-request-id": "WESTUS2:20210614T233850Z:83b7428e-3395-48e8-a86d-5e12f14b6660" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9575\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800/providers/Microsoft.Compute/availabilitySets/test-aset9575\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4064,15 +4228,15 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320?api-version=2021-03-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800/providers/Microsoft.Compute/availabilitySets/test-aset9575?api-version=2021-04-01", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "146", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210507.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "92003cb287d5bba008561be54c890eef", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210614.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c2bf6909e2d7afcd59ba209322b41e55", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4093,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Length": "432", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:56 GMT", + "Date": "Mon, 14 Jun 2021 23:38:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4102,17 +4266,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "92003cb287d5bba008561be54c890eef", - "x-ms-correlation-request-id": "39180aeb-3a30-466f-9720-e13871f93075", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1139", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "f4e4b9b4-581c-4c1b-89b8-5eb479b0becf", - "x-ms-routing-request-id": "WESTUS2:20210507T212857Z:39180aeb-3a30-466f-9720-e13871f93075" + "x-ms-client-request-id": "c2bf6909e2d7afcd59ba209322b41e55", + "x-ms-correlation-request-id": "293049aa-9cce-4f4f-897d-d5a8a4ec0882", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;200,Microsoft.Compute/PutVM30Min;1074", + "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-request-id": "b14fd75f-4223-4d29-8fc6-0f00a96652dc", + "x-ms-routing-request-id": "WESTUS2:20210614T233850Z:293049aa-9cce-4f4f-897d-d5a8a4ec0882" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset5320\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2997/providers/Microsoft.Compute/availabilitySets/test-aset5320\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset9575\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5800/providers/Microsoft.Compute/availabilitySets/test-aset9575\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {\r\n", @@ -4130,7 +4294,7 @@ } ], "Variables": { - "RandomSeed": "291200757", + "RandomSeed": "751568024", "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json deleted file mode 100644 index 8088dce7b00e..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(False).json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "dcf3bc7c7c526c42606b4f8bbe125c8b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "657299ab-c7cb-4dcb-921e-b7d6a7a01eb0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "657299ab-c7cb-4dcb-921e-b7d6a7a01eb0", - "x-ms-routing-request-id": "WESTUS2:20210507T212849Z:657299ab-c7cb-4dcb-921e-b7d6a7a01eb0" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-6caf2a3786c79a4487b96b2dc2473be8-6a15663f737c5049-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": "79a83b24b946fa1eda91a6de3f21361c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c470308-ba84-421f-bb63-6a685e5a2efd", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "6c470308-ba84-421f-bb63-6a685e5a2efd", - "x-ms-routing-request-id": "WESTUS2:20210507T212849Z:6c470308-ba84-421f-bb63-6a685e5a2efd" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-898?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "41", - "Content-Type": "application/json", - "traceparent": "00-55165b40cd556f4ea96d208a9bcfc19f-3e2d4c1574ba6c44-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": "a1d606a326c307d2193700faf3c6f174", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "South Central US", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "235", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cca90740-6a84-423a-9ad7-e0bcaf46e42e", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "cca90740-6a84-423a-9ad7-e0bcaf46e42e", - "x-ms-routing-request-id": "WESTUS2:20210507T212850Z:cca90740-6a84-423a-9ad7-e0bcaf46e42e" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-898", - "name": "testRg-898", - "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - } - ], - "Variables": { - "RandomSeed": "1692308145", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json deleted file mode 100644 index 29907c14598a..000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/GenericResourceTests/GenericResourceTests(True)Async.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d38fd7f7b6cb82c1eba6971ec8201dcf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bd67ca1-006f-49f2-9208-d1cd39d3d114", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "1bd67ca1-006f-49f2-9208-d1cd39d3d114", - "x-ms-routing-request-id": "WESTUS2:20210507T212848Z:1bd67ca1-006f-49f2-9208-d1cd39d3d114" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-008b3acb602b2c4eb6d6de88018521dc-e3767c7e292cd94d-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": "da0d467684b06e69e3916b74a7ad4a51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "397", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f4d137c-f899-456a-9333-fa1439fe4678", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "0f4d137c-f899-456a-9333-fa1439fe4678", - "x-ms-routing-request-id": "WESTUS2:20210507T212849Z:0f4d137c-f899-456a-9333-fa1439fe4678" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "Azure SDK sandbox", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-8970?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "41", - "Content-Type": "application/json", - "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": "b439444fabd1786dc55ef29e7b53d223", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "South Central US", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "237", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 07 May 2021 21:28:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0980ef5c-9f91-4d9b-938a-c73ccb5dbe5e", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "0980ef5c-9f91-4d9b-938a-c73ccb5dbe5e", - "x-ms-routing-request-id": "WESTUS2:20210507T212850Z:0980ef5c-9f91-4d9b-938a-c73ccb5dbe5e" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-8970", - "name": "testRg-8970", - "type": "Microsoft.Resources/resourceGroups", - "location": "southcentralus", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - } - ], - "Variables": { - "RandomSeed": "1055099741", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file